File: builder.rb

package info (click to toggle)
ruby-tilt 2.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 648 kB
  • sloc: ruby: 4,998; makefile: 7
file content (42 lines) | stat: -rw-r--r-- 786 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# frozen_string_literal: true
require_relative 'template'
require 'builder'

module Tilt
  # Builder template implementation.
  class BuilderTemplate < Template
    self.default_mime_type = 'text/xml'

    def prepare
      @options[:indent] ||= 2
    end

    def evaluate(scope, locals, &block)
      if @data.respond_to?(:to_str)
        unless locals[:xml]
          locals = Hash[locals]
          locals[:xml] = xml_builder
        end
        return super
      end

      xml = locals[:xml] || xml_builder
      @data.call(xml)
      xml.target!
    end

    def precompiled_postamble(locals)
      "xml.target!"
    end

    def precompiled_template(locals)
      @data.to_str
    end

    private

    def xml_builder
      ::Builder::XmlMarkup.new(options)
    end
  end
end