aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/template_handlers/erb.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2008-01-10 03:17:20 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2008-01-10 03:17:20 +0000
commita8eb90fcee1efdc491c9eb030827b46929ea979c (patch)
treeaad46c0c0e483ad77a129777f1d4a641c1d334c0 /actionpack/lib/action_view/template_handlers/erb.rb
parent59f222dbf7c05e3d1f9e71831bc79e2a5ed4a5b5 (diff)
downloadrails-a8eb90fcee1efdc491c9eb030827b46929ea979c.tar.gz
rails-a8eb90fcee1efdc491c9eb030827b46929ea979c.tar.bz2
rails-a8eb90fcee1efdc491c9eb030827b46929ea979c.zip
Move fragment caching from special helper methods to TemplateHandler. Closes #10754 [Josh Peek]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8619 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, 6 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/template_handlers/erb.rb b/actionpack/lib/action_view/template_handlers/erb.rb
index 87cb09952c..26cca586ba 100644
--- a/actionpack/lib/action_view/template_handlers/erb.rb
+++ b/actionpack/lib/action_view/template_handlers/erb.rb
@@ -25,6 +25,12 @@ module ActionView
def compile(template)
::ERB.new(template, nil, @view.erb_trim_mode).src
end
+
+ def cache_fragment(block, name = {}, options = nil) #:nodoc:
+ @view.fragment_for(block, name, options) do
+ eval(ActionView::Base.erb_variable, block.binding)
+ end
+ end
end
end
end