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

Version Path
tilt-2.0.7 lib/tilt/builder.rb
mdg-1.0.1 vendor/bundle/ruby/2.3.0/gems/tilt-2.0.6/lib/tilt/builder.rb
logstash-input-fifo-0.9.1 vendor/bundle/jruby/1.9/gems/tilt-2.0.6/lib/tilt/builder.rb
logstash-input-fifo-0.9.0 vendor/bundle/jruby/1.9/gems/tilt-2.0.6/lib/tilt/builder.rb
brakeman-3.5.0 bundle/ruby/2.3.0/gems/tilt-2.0.6/lib/tilt/builder.rb
tilt-2.0.6 lib/tilt/builder.rb