Sha256: f72d8cfa63f09957b5c4951396ec9be0cc43943160530d2b5dabd0a4918010e9
Contents?: true
Size: 727 Bytes
Versions: 166
Compression:
Stored size: 727 Bytes
Contents
require 'tilt/template' require 'builder' module Tilt # Builder template implementation. See: # http://builder.rubyforge.org/ class BuilderTemplate < Template self.default_mime_type = 'text/xml' def prepare options[:indent] ||= 2 end def evaluate(scope, locals, &block) xml = (locals[:xml] || ::Builder::XmlMarkup.new(options)) if data.respond_to?(:to_str) if !locals[:xml] locals = locals.merge(:xml => xml) end return super(scope, locals, &block) end data.call(xml) xml.target! end def precompiled_postamble(locals) "xml.target!" end def precompiled_template(locals) data.to_str end end end
Version data entries
166 entries across 127 versions & 20 rubygems