Method: Deas::TemplateSource#partial
- Defined in:
- lib/deas/template_source.rb
#partial(template_name, locals, &content) ⇒ Object
56 57 58 59 60 |
# File 'lib/deas/template_source.rb', line 56 def partial(template_name, locals, &content) compile(template_name) do |engine| engine.partial(template_name, locals, &content) end end |