Flowdock
method

compile

Importance_0
v2.3.8 - Show latest stable - 0 notes - Class: ActionView::TemplateHandlers::ERB
compile(template) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/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
Register or log in to add new notes.