aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/middlewares.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/action_controller/middlewares.rb')
-rw-r--r--actionpack/lib/action_controller/middlewares.rb8
1 files changed, 3 insertions, 5 deletions
diff --git a/actionpack/lib/action_controller/middlewares.rb b/actionpack/lib/action_controller/middlewares.rb
index 30dbc26f11..f9cfc2b18e 100644
--- a/actionpack/lib/action_controller/middlewares.rb
+++ b/actionpack/lib/action_controller/middlewares.rb
@@ -4,8 +4,6 @@ use "Rack::Lock", :if => lambda {
use "ActionController::Failsafe"
-use "ActiveRecord::QueryCache", :if => lambda { defined?(ActiveRecord) }
-
["ActionController::Session::CookieStore",
"ActionController::Session::MemCacheStore",
"ActiveRecord::SessionStore"].each do |store|
@@ -18,6 +16,6 @@ use "ActiveRecord::QueryCache", :if => lambda { defined?(ActiveRecord) }
)
end
-use ActionController::RewindableInput
-use ActionController::ParamsParser
-use Rack::MethodOverride
+use "ActionController::RewindableInput"
+use "ActionController::ParamsParser"
+use "Rack::MethodOverride"