aboutsummaryrefslogblamecommitdiffstats
path: root/actionpack/lib/action_view/template/handlers/erb.rb
blob: e3a7d96941d8002964883473a3fe5a79dff66e18 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                           
 


                               

                        

                          




                                                                

                                      
                           

                     


                                                                          



         
require 'active_support/core_ext/class/attribute_accessors'

module ActionView
  module TemplateHandlers
    class ERB < TemplateHandler
      include Compilable

      ##
      # :singleton-method:
      # Specify trim mode for the ERB compiler. Defaults to '-'.
      # See ERb documentation for suitable values.
      cattr_accessor :erb_trim_mode
      self.erb_trim_mode = '-'

      self.default_format = Mime::HTML

      def compile(template)
        require 'erb'

        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
      end
    end
  end
end