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