instance method
compile
Ruby on Rails 2.2.3
Since v2.2.3 Last seen in v2.3.18Available in: v2.2.3 v2.3.18
Signature
compile(template)
No documentation comment.
Parameters
-
templatereq
Source
# File actionpack/lib/action_view/template_handlers/erb.rb, line 50
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
Defined in actionpack/lib/action_view/template_handlers/erb.rb line 50
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionView::TemplateHandlers::ERB