Skip to content

Instantly share code, notes, and snippets.

@tizoc
Created June 25, 2012 13:25
Show Gist options
  • Save tizoc/2988559 to your computer and use it in GitHub Desktop.
Save tizoc/2988559 to your computer and use it in GitHub Desktop.
class Cuba
module Render
def render(template, locals = {}, options = {}, &block)
_cache.fetch(template) {
Tilt.new(template, 1, options.merge(outvar: '@_output')
}.render(self, locals, &block)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment