Add Handlebars
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user