Class: Malt::Format::Tenjin

Inherits:
AbstractTemplate show all
Defined in:
lib/malt/formats/tenjin.rb

Overview

Tenjin

http://www.kuwata-lab.com/tenjin/

Instance Attribute Summary

Attributes inherited from Abstract

#options

Instance Method Summary collapse

Methods inherited from AbstractTemplate

#method_missing, #render, #to

Methods inherited from Abstract

#default, #engine, engine, extensions, #extensions, #file, file_extension, #file_read, #file_type, #parse_type_from_data, #refile, register, #render, #render_into, #rendering_parameters, #scope_vs_data, #subtype, #text, #to, #to_default, #to_s, #type, #with, #with!

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Malt::Format::AbstractTemplate

Instance Method Details

#html(*data, &content) ⇒ Object



28
29
30
# File 'lib/malt/formats/tenjin.rb', line 28

def html(*data, &content)
  render_into(:html, *data, &content)
end

#rbObject



15
16
17
# File 'lib/malt/formats/tenjin.rb', line 15

def rb(*)
  render_engine.compile(text, file)
end

#to_html(*data, &yld) ⇒ Object



33
34
35
36
37
38
# File 'lib/malt/formats/tenjin.rb', line 33

def to_html(*data, &yld)
  new_text    = render(:html, *data, &yld)
  new_file    = refile(:html)
  new_options = options.merge(:text=>new_text, :file=>new_file, :type=>:html)
  HTML.new(new_options)
end

#to_rbObject Also known as: to_ruby

Erb templates can be “precompiled” into Ruby templates.



20
21
22
23
# File 'lib/malt/formats/tenjin.rb', line 20

def to_rb(*)
  text = rb
  Ruby.new(:text=>text, :file=>refile(:rb), :type=>:rb)
end