10 lines
162 B
Ruby
10 lines
162 B
Ruby
module Workbench
|
|
module Wrappers
|
|
class Mustache < Base
|
|
def render context, args = {}
|
|
::Mustache.render(tpl, args)
|
|
end
|
|
end
|
|
end
|
|
end
|