Class/Module Index [+]

Quicksearch

ActionView::TemplateHandlers::ERB

Public Class Methods

erb_trim_mode click to toggle source

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

# File lib/action_view/template_handlers/erb.rb, line 10
cattr_accessor :erb_trim_mode

Public Instance Methods

compile(template) click to toggle source
# 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

[Validate]

Generated with the Darkfish Rdoc Generator 2.