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

17 lines
290 B
Ruby

module Workbench
module Wrappers
class Handlebars < Base
@@context = ::Handlebars::Context.new
def initialize path
@engine = @@context.compile(File.read(path))
end
def render context, args = {}
@engine.call(args)
end
end
end
end