Parent

Tilt::BuilderTemplate

Builder template implementation. See: builder.rubyforge.org/

Public Instance Methods

evaluate(scope, locals, &block) click to toggle source
# File lib/tilt/builder.rb, line 12
def evaluate(scope, locals, &block)
  return super(scope, locals, &block) if data.respond_to?(:to_str)
  xml = ::Builder::XmlMarkup.new(:indent => 2)
  data.call(xml)
  xml.target!
end
precompiled_postamble(locals) click to toggle source
# File lib/tilt/builder.rb, line 24
def precompiled_postamble(locals)
  "xml.target!"
end
precompiled_preamble(locals) click to toggle source
# File lib/tilt/builder.rb, line 19
def precompiled_preamble(locals)
  return super if locals.include? :xml
  "xml = ::Builder::XmlMarkup.new(:indent => 2)\n#{super}"
end
precompiled_template(locals) click to toggle source
# File lib/tilt/builder.rb, line 28
def precompiled_template(locals)
  data.to_str
end
prepare() click to toggle source
# File lib/tilt/builder.rb, line 10
def prepare; end

[Validate]

Generated with the Darkfish Rdoc Generator 2.