Module: Jekyll::Filters::Pry
- Defined in:
- lib/jekyll/filters/pry.rb
Instance Method Summary collapse
-
#pry(input, *args) ⇒ Object
Pry into the input and args.
Instance Method Details
#pry(input, *args) ⇒ Object
Pry into the input and args
Example usage:
site.posts | pry }
11 12 13 14 15 16 17 |
# File 'lib/jekyll/filters/pry.rb', line 11 def pry(input, *args) require 'pry' binding.pry input end |