class String
Public Instance Methods
parse(context = nil)
click to toggle source
# File lib/tiny_template/core_ext.rb, line 2 def parse(context = nil) unless context RubyVM::DebugInspector.open do |inspector| context = eval('self', inspector.frame_binding(2)) end end TinyTemplate(self, context) end
Also aliased as: ~