mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
26 lines
716 B
Ruby
26 lines
716 B
Ruby
require 'active_support/core_ext/class/attribute_accessors'
|
|
|
|
module ActionView
|
|
module TemplateHandlers
|
|
class ERB < TemplateHandler
|
|
include Compilable
|
|
|
|
##
|
|
# :singleton-method:
|
|
# Specify trim mode for the ERB compiler. Defaults to '-'.
|
|
# See ERb documentation for suitable values.
|
|
cattr_accessor :erb_trim_mode
|
|
self.erb_trim_mode = '-'
|
|
|
|
self.default_format = Mime::HTML
|
|
|
|
def compile(template)
|
|
require 'erb'
|
|
|
|
magic = $1 if template.source =~ /\A(<%#.*coding[:=]\s*(\S+)\s*-?%>)/
|
|
erb = "#{magic}<% __in_erb_template=true %>#{template.source}"
|
|
::ERB.new(erb, nil, erb_trim_mode, '@output_buffer').src
|
|
end
|
|
end
|
|
end
|
|
end
|