| Class | ActionView::TemplateHandlers::ERB |
| In: |
vendor/rails/actionpack/lib/action_view/template_handlers/erb.rb
|
| Parent: | TemplateHandler |
# File vendor/rails/actionpack/lib/action_view/template_handlers/erb.rb, line 13
13: def compile(template)
14: src = ::ERB.new("<% __in_erb_template=true %>#{template.source}", nil, erb_trim_mode, '@output_buffer').src
15:
16: # Ruby 1.9 prepends an encoding to the source. However this is
17: # useless because you can only set an encoding on the first line
18: RUBY_VERSION >= '1.9' ? src.sub(/\A#coding:.*\n/, '') : src
19: end