erb.rb 704 字节
Newer Older
1
require 'erb'
J
Jeremy Kemper 已提交
2
require 'active_support/core_ext/class/attribute_accessors'
3

4 5 6
module ActionView
  module TemplateHandlers
    class ERB < TemplateHandler
7 8
      include Compilable

P
Pratik Naik 已提交
9 10
      ##
      # :singleton-method:
11 12 13 14 15
      # Specify trim mode for the ERB compiler. Defaults to '-'.
      # See ERb documentation for suitable values.
      cattr_accessor :erb_trim_mode
      self.erb_trim_mode = '-'

16 17
      self.default_format = Mime::HTML

18
      def compile(template)
19 20 21
        magic = $1 if template.source =~ /\A(<%#.*coding:\s*(\S+)\s*-?%>)/
        erb = "#{magic}<% __in_erb_template=true %>#{template.source}"
        ::ERB.new(erb, nil, erb_trim_mode, '@output_buffer').src
22 23 24 25
      end
    end
  end
end