Module: TinMan::Template
Class Method Summary
collapse
Instance Method Summary
collapse
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(m, *args, &blk) ⇒ Object
44
45
46
|
# File 'lib/tinman.rb', line 44
def method_missing m, *args, &blk
self.keys.include?(m) ? self[m] : super
end
|
Class Method Details
.included(obj) ⇒ Object
48
49
50
51
52
|
# File 'lib/tinman.rb', line 48
def self.included obj
obj.class_eval do
define_method(obj.to_s.split('::').last.downcase) { self }
end
end
|
Instance Method Details
#redcloth(text) ⇒ Object
36
37
38
39
40
41
42
|
# File 'lib/tinman.rb', line 36
def redcloth text
if (options = @config[:redcloth])
RedCloth.new(text.to_s.strip, *(options.eql?(true) ? [] : options)).to_html
else
text.strip
end
end
|
#to_html(page, config, &blk) ⇒ Object
31
32
33
34
|
# File 'lib/tinman.rb', line 31
def to_html page, config, &blk
path = ([:layout, :repo].include?(page) ? Paths[:templates] : Paths[:pages])
config[:to_html].call(path, page, binding)
end
|