Sha256: 1d22a8c39a23b1ca548277e1f026250e936d56988eaf8f6e53b07828183b6f57
Contents?: true
Size: 1.24 KB
Versions: 1
Compression:
Stored size: 1.24 KB
Contents
module Brochure class Context include Tilt::CompileSite def self.for(helpers) context = Class.new(self) context.send(:include, *helpers) if helpers.any? context end attr_reader :application, :template, :env def initialize(application, template, env, assigns = {}) @application = application @template = template @env = env load_assigns(assigns) end def load_assigns(assigns) assigns.each do |name, value| instance_variable_set("@#{name}", value) end end def request @request ||= Rack::Request.new(env) end def h(html) Rack::Utils.escape_html(html) end def render(logical_path, locals = {}, &block) if partial = application.find_partial(logical_path, template.format_extension) if block_given? print partial.render(env, locals) { capture(&block) } else partial.render(env, locals) end else raise TemplateNotFound, "no such template '#{logical_path}'" end end def print(str) @_out_buf << str end def capture buf = "" old_buf, @_out_buf = @_out_buf, buf yield buf ensure @_out_buf = old_buf end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
brochure-0.5.0 | lib/brochure/context.rb |