Class: Jekyll::Tags::Pry
- Inherits:
-
Liquid::Tag
- Object
- Liquid::Tag
- Jekyll::Tags::Pry
- Defined in:
- lib/jekyll/tags/pry.rb
Instance Method Summary collapse
-
#render(context) ⇒ Object
Pry into the rendering context.
Instance Method Details
#render(context) ⇒ Object
Pry into the rendering context
Example usage:
pry %
11 12 13 14 15 |
# File 'lib/jekyll/tags/pry.rb', line 11 def render(context) require 'pry' binding.pry end |