aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/caching.rb
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2012-06-13 16:14:11 -0300
committerSantiago Pastorino <santiago@wyeworks.com>2012-06-13 16:18:03 -0300
commit459de6fac3c5a0bcf4c43e221a0a81ab5d81a7f7 (patch)
tree095fdc0afa04b7c507e4b2cfd8b3995027668ecd /actionpack/lib/action_controller/caching.rb
parent56a1bb2f1066d0c119834019916f1e4b05fffec0 (diff)
downloadrails-459de6fac3c5a0bcf4c43e221a0a81ab5d81a7f7.tar.gz
rails-459de6fac3c5a0bcf4c43e221a0a81ab5d81a7f7.tar.bz2
rails-459de6fac3c5a0bcf4c43e221a0a81ab5d81a7f7.zip
ActionController::Caching depends on RackDelegation and AbstractController::Callbacks
Diffstat (limited to 'actionpack/lib/action_controller/caching.rb')
-rw-r--r--actionpack/lib/action_controller/caching.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/actionpack/lib/action_controller/caching.rb b/actionpack/lib/action_controller/caching.rb
index 112573a38d..9118806059 100644
--- a/actionpack/lib/action_controller/caching.rb
+++ b/actionpack/lib/action_controller/caching.rb
@@ -55,6 +55,9 @@ module ActionController #:nodoc:
end
end
+ include RackDelegation
+ include AbstractController::Callbacks
+
include ConfigMethods
include Pages, Actions, Fragments
include Sweeping if defined?(ActiveRecord)