Class: ActionView::TemplateHandlers::ERB

Inherits:
ActionView::TemplateHandler show all
Includes:
Compilable
Defined in:
lib/action_view/template_handlers/erb.rb

Instance Method Summary collapse

Methods included from Compilable

included

Methods inherited from ActionView::TemplateHandler

call, #initialize, #render

Constructor Details

This class inherits a constructor from ActionView::TemplateHandler

Instance Method Details

#compile(template) ⇒ Object



13
14
15
16
17
18
19
20
21
22
# File 'lib/action_view/template_handlers/erb.rb', line 13

def compile(template)
  magic = $1 if template.source =~ /\A(<%#.*coding[:=]\s*(\S+)\s*-?%>)/
  erb = "#{magic}<% __in_erb_template=true %>#{template.source}"

  if erb.respond_to?(:force_encoding)
    erb.force_encoding(template.source.encoding)
  end

  ::ERB.new(erb, nil, erb_trim_mode, '@output_buffer').src
end

#erb_trim_modeObject

:singleton-method: Specify trim mode for the ERB compiler. Defaults to ‘-’. See ERb documentation for suitable values.



10
# File 'lib/action_view/template_handlers/erb.rb', line 10

cattr_accessor :erb_trim_mode