aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/template_handlers/erb.rb
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2008-01-22 01:46:34 +0000
committerMichael Koziarski <michael@koziarski.com>2008-01-22 01:46:34 +0000
commitc0110a9faa1fc414c960a1c639aa8b121d92ca82 (patch)
tree0e618f0c76ffb3fcb973859977f91d4ee9f7cf6d /actionpack/lib/action_view/template_handlers/erb.rb
parent91de20d6212b5203587d549ce2d63efcc5996eb0 (diff)
downloadrails-c0110a9faa1fc414c960a1c639aa8b121d92ca82.tar.gz
rails-c0110a9faa1fc414c960a1c639aa8b121d92ca82.tar.bz2
rails-c0110a9faa1fc414c960a1c639aa8b121d92ca82.zip
Refactor template compilation from AV::Base into the template handlers. Closes #10888 [lifofifo]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8689 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib/action_view/template_handlers/erb.rb')
-rw-r--r--actionpack/lib/action_view/template_handlers/erb.rb6
1 files changed, 2 insertions, 4 deletions
diff --git a/actionpack/lib/action_view/template_handlers/erb.rb b/actionpack/lib/action_view/template_handlers/erb.rb
index ffc1ab0e97..3389c124eb 100644
--- a/actionpack/lib/action_view/template_handlers/erb.rb
+++ b/actionpack/lib/action_view/template_handlers/erb.rb
@@ -22,14 +22,12 @@ end
module ActionView
module TemplateHandlers
class ERB < TemplateHandler
+ include Compilable
+
def compile(template)
::ERB.new(template, nil, @view.erb_trim_mode).src
end
- def self.compilable?
- true
- end
-
def cache_fragment(block, name = {}, options = nil) #:nodoc:
@view.fragment_for(block, name, options) do
eval(ActionView::Base.erb_variable, block.binding)