aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJamis Buck <jamis@37signals.com>2006-03-03 21:24:39 +0000
committerJamis Buck <jamis@37signals.com>2006-03-03 21:24:39 +0000
commitc0d24778867e8b39c160542923f4ccb6b3f48d30 (patch)
treef6ace3e5b4c90ed2a619f34ae88aa36bb198408b
parent2e67f1adc8e52121270d1139665a965e3f0792d8 (diff)
downloadrails-c0d24778867e8b39c160542923f4ccb6b3f48d30.tar.gz
rails-c0d24778867e8b39c160542923f4ccb6b3f48d30.tar.bz2
rails-c0d24778867e8b39c160542923f4ccb6b3f48d30.zip
remove explicit dependency mechanism setting in console_app
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3755 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r--railties/lib/console_app.rb6
1 files changed, 1 insertions, 5 deletions
diff --git a/railties/lib/console_app.rb b/railties/lib/console_app.rb
index d03cdd352a..6e61fc9171 100644
--- a/railties/lib/console_app.rb
+++ b/railties/lib/console_app.rb
@@ -3,10 +3,6 @@ require 'action_controller/integration_test'
# work around the at_exit hook in test/unit, which kills IRB
Test::Unit.run = true
-# have to use :require dependencies mechanism with the integration test stuff,
-# or things start acting really wierd from request to request.
-Dependencies.mechanism = :require
-
# reference the global "app" instance, created on demand. To recreate the
# instance, pass a non-false value as the parameter.
def app(create=false)
@@ -28,4 +24,4 @@ end
def reload!
puts "Reloading..."
Dispatcher.reset_application!
-end \ No newline at end of file
+end