Class: Jekyll::Tags::Pry

Inherits:
Liquid::Tag
  • Object
show all
Defined in:
lib/jekyll/tags/pry.rb

Instance Method Summary collapse

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