1
0
Fork 0
template_engine_comparison/lib/workbench/wrappers/mustache.rb

10 lines
162 B
Ruby
Raw Normal View History

2013-12-14 18:32:31 +00:00
module Workbench
module Wrappers
class Mustache < Base
def render context, args = {}
::Mustache.render(tpl, args)
end
2013-12-14 17:47:11 +00:00
end
end
end