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 50 50: def compile(template) 51: src = ::ERB.new("<% __in_erb_template=true %>#{template.source}", nil, erb_trim_mode, '@output_buffer').src 52: 53: # Ruby 1.9 prepends an encoding to the source. However this is 54: # useless because you can only set an encoding on the first line 55: RUBY_VERSION >= '1.9' ? src.sub(/\A#coding:.*\n/, '') : src 56: end