diff options
author | Joshua Peek <josh@joshpeek.com> | 2009-02-24 10:52:51 -0600 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2009-02-24 10:52:51 -0600 |
commit | d32eb410f19f6872df1e1e1810840c0f5aa13b50 (patch) | |
tree | cf19f236e87b45cc98ea2e0a325a5f0a85cb379b /railties | |
parent | 5c684f518feeaf38961f976b966e57abf386e248 (diff) | |
download | rails-d32eb410f19f6872df1e1e1810840c0f5aa13b50.tar.gz rails-d32eb410f19f6872df1e1e1810840c0f5aa13b50.tar.bz2 rails-d32eb410f19f6872df1e1e1810840c0f5aa13b50.zip |
Put back dispatcher cleanup call in console reload! [#2056 state:resolved]
Diffstat (limited to 'railties')
-rw-r--r-- | railties/lib/console_app.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/railties/lib/console_app.rb b/railties/lib/console_app.rb index d7cd57564f..d7d01d703f 100644 --- a/railties/lib/console_app.rb +++ b/railties/lib/console_app.rb @@ -24,6 +24,7 @@ end #reloads the environment def reload! puts "Reloading..." + Dispatcher.cleanup_application Dispatcher.reload_application true end |