class Sprockets::EjsTemplate

def evaluate(scope, locals, &block)


# => "function(obj){...}"

assigned to a JS variable.
Returns a JS function definition String. The result should be

Compile template data with EJS compiler.
def evaluate(scope, locals, &block)
  EJS.compile(data)
end