From 3cf2c63eee8c8de57b4856c13008979fee2778bf Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Tue, 29 May 2007 21:44:35 +0000 Subject: Console reload! runs to_prepare callbacks also. Closes #8393. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6897 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- railties/CHANGELOG | 2 ++ railties/lib/console_app.rb | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'railties') diff --git a/railties/CHANGELOG b/railties/CHANGELOG index baf0a0ef09..58e8e60d19 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Console reload! runs to_prepare callbacks also. #8393 [f.svehla] + * Generated migrations include timestamps by default. #8501 [Shane Vitarana] * Drop Action Web Service from rails:freeze:edge. [Jeremy Kemper] diff --git a/railties/lib/console_app.rb b/railties/lib/console_app.rb index 4c2126057a..b23cda9da0 100644 --- a/railties/lib/console_app.rb +++ b/railties/lib/console_app.rb @@ -23,5 +23,7 @@ end #reloads the environment def reload! puts "Reloading..." - Dispatcher.reset_application! + returning Dispatcher.reset_application! do + Dispatcher.send :run_preparation_callbacks + end end -- cgit v1.2.3