erb.rb 722 字节
Newer Older
1 2
require 'erb'

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

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

15
      def compile(template)
16 17 18 19 20
        src = ::ERB.new("<% __in_erb_template=true %>#{template.source}", nil, erb_trim_mode, '@output_buffer').src

        # Ruby 1.9 prepends an encoding to the source. However this is
        # useless because you can only set an encoding on the first line
        RUBY_VERSION >= '1.9' ? src.sub(/\A#coding:.*\n/, '') : src
21 22 23 24
      end
    end
  end
end