aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch.rb
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2009-05-03 09:41:40 -0500
committerJoshua Peek <josh@joshpeek.com>2009-05-03 09:41:40 -0500
commitbcc4537f2a0d37fc02d67e9564fa5c9c5555b3d5 (patch)
tree2084bb22890f635239564b508297aa246cfb591a /actionpack/lib/action_dispatch.rb
parente0660192806fc1ec8b75654e69211f85c9f1256b (diff)
downloadrails-bcc4537f2a0d37fc02d67e9564fa5c9c5555b3d5.tar.gz
rails-bcc4537f2a0d37fc02d67e9564fa5c9c5555b3d5.tar.bz2
rails-bcc4537f2a0d37fc02d67e9564fa5c9c5555b3d5.zip
Wrap dispatcher callbacks around the whole middleware chain. Kill unnecessary Reloader middleware.
Diffstat (limited to 'actionpack/lib/action_dispatch.rb')
-rw-r--r--actionpack/lib/action_dispatch.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch.rb b/actionpack/lib/action_dispatch.rb
index 5a082fa7e3..c882930e64 100644
--- a/actionpack/lib/action_dispatch.rb
+++ b/actionpack/lib/action_dispatch.rb
@@ -47,7 +47,6 @@ module ActionDispatch
autoload :Failsafe, 'action_dispatch/middleware/failsafe'
autoload :ParamsParser, 'action_dispatch/middleware/params_parser'
- autoload :Reloader, 'action_dispatch/middleware/reloader'
autoload :Rescue, 'action_dispatch/middleware/rescue'
autoload :ShowExceptions, 'action_dispatch/middleware/show_exceptions'
autoload :MiddlewareStack, 'action_dispatch/middleware/stack'