Class: Reactive::Mvc::View::TemplateHandlers::ERB

Inherits:
Reactive::Mvc::View::TemplateHandler show all
Defined in:
lib/reactive-mvc/view/template_handlers/erb.rb

Instance Method Summary collapse

Methods inherited from Reactive::Mvc::View::TemplateHandler

call

Instance Method Details

#compile(template) ⇒ Object



11
12
13
14
15
16
17
# File 'lib/reactive-mvc/view/template_handlers/erb.rb', line 11

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