aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorNicholas Seckar <nseckar@gmail.com>2006-02-02 04:54:07 +0000
committerNicholas Seckar <nseckar@gmail.com>2006-02-02 04:54:07 +0000
commit7a43a05a2b236123329be3198c149c8e894b0450 (patch)
tree14995d46ed0a59689d578e50a44498592f1d0a66 /railties
parent65c337ac856f7cbfa521b8e6a7d1d234b4873038 (diff)
downloadrails-7a43a05a2b236123329be3198c149c8e894b0450.tar.gz
rails-7a43a05a2b236123329be3198c149c8e894b0450.tar.bz2
rails-7a43a05a2b236123329be3198c149c8e894b0450.zip
Further improvements to reloading code
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3519 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties')
-rw-r--r--railties/lib/dispatcher.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/railties/lib/dispatcher.rb b/railties/lib/dispatcher.rb
index 7f03294860..eab8b3a1d8 100644
--- a/railties/lib/dispatcher.rb
+++ b/railties/lib/dispatcher.rb
@@ -50,10 +50,9 @@ class Dispatcher
# mailers, and so forth. This allows them to be loaded again without having
# to restart the server (WEBrick, FastCGI, etc.).
def reset_application!
- Controllers.clear!
Dependencies.clear
ActiveRecord::Base.reset_subclasses
- Reloadable.remove_classes_including
+ Class.remove_classes(*Reloadable.reloadable_classes)
end
private