Class: ActionView::TemplateHandlers::ERB
- Inherits:
-
ActionView::TemplateHandler
- Object
- ActionView::TemplateHandler
- ActionView::TemplateHandlers::ERB
- Includes:
- Compilable
- Defined in:
- lib/action_view/template_handlers/erb.rb
Instance Method Summary collapse
- #compile(template) ⇒ Object
-
#erb_trim_mode ⇒ Object
:singleton-method: Specify trim mode for the ERB compiler.
Methods included from Compilable
Methods inherited from ActionView::TemplateHandler
Constructor Details
This class inherits a constructor from ActionView::TemplateHandler
Instance Method Details
#compile(template) ⇒ Object
13 14 15 16 17 18 19 |
# File 'lib/action_view/template_handlers/erb.rb', line 13 def compile(template) 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 end |
#erb_trim_mode ⇒ Object
: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 |