aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch.rb
diff options
context:
space:
mode:
authorJohn Firebaugh <john_firebaugh@us.ibm.com>2010-11-23 18:04:05 -0800
committerJosé Valim <jose.valim@gmail.com>2010-12-20 12:43:02 +0100
commit0f7c970e4f1cf0f3bcc01c22a6a3038cb3e34668 (patch)
treebef68868ab12882293e04a102f9e507efae2c7f6 /actionpack/lib/action_dispatch.rb
parentd4f995301bace57070e37ac97b9b18a70aed2230 (diff)
downloadrails-0f7c970e4f1cf0f3bcc01c22a6a3038cb3e34668.tar.gz
rails-0f7c970e4f1cf0f3bcc01c22a6a3038cb3e34668.tar.bz2
rails-0f7c970e4f1cf0f3bcc01c22a6a3038cb3e34668.zip
Introduce ActionDispatch::Reloader
Based on the implementation on the 2-3-stable branch, patches by Hongli Lai <hongli@phusion.nl>, and helpful suggestions from José Valim. Hongli Lai's patches included locking around the request cycle; this is now handled by Rack::Lock (https://github.com/rack/rack/issues/issue/87/). [#2873] Signed-off-by: José Valim <jose.valim@gmail.com>
Diffstat (limited to 'actionpack/lib/action_dispatch.rb')
-rw-r--r--actionpack/lib/action_dispatch.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/lib/action_dispatch.rb b/actionpack/lib/action_dispatch.rb
index 50faf666e6..50d0d191c1 100644
--- a/actionpack/lib/action_dispatch.rb
+++ b/actionpack/lib/action_dispatch.rb
@@ -53,6 +53,7 @@ module ActionDispatch
autoload :Flash
autoload :Head
autoload :ParamsParser
+ autoload :Reloader
autoload :RemoteIp
autoload :Rescue
autoload :ShowExceptions