/tools/drillbit/Resources/tests/ruby/markaby/lib/markaby/template.rb
http://github.com/appcelerator/titanium_desktop · Ruby · 12 lines · 12 code · 0 blank · 0 comment · 0 complexity · ec46738d0ffdbb8c2dce4fa6ed2fb2be MD5 · raw file
- module Markaby
- class Template
- def initialize(template)
- @template = template
- end
- def render(*args)
- output = Builder.new(*args)
- output.instance_eval @template
- return output.to_s
- end
- end
- end