aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
Diffstat (limited to 'railties')
-rw-r--r--railties/lib/rails/console_app.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/railties/lib/rails/console_app.rb b/railties/lib/rails/console_app.rb
index 5ce3d0d13b..fc84a50e91 100644
--- a/railties/lib/rails/console_app.rb
+++ b/railties/lib/rails/console_app.rb
@@ -17,7 +17,8 @@ end
# create a new session. If a block is given, the new session will be yielded
# to the block before being returned.
def new_session
- session = ActionController::Integration::Session.new
+ app = ActionController::Dispatcher.new
+ session = ActionController::Integration::Session.new(app)
yield session if block_given?
session
end