1
0

10 lines
162 B
Ruby
Raw Normal View History

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