diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2010-11-19 16:26:09 -0800 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2010-11-19 16:26:09 -0800 |
commit | 938243feb9ea177b84276821818c9eed66064340 (patch) | |
tree | 4b062ec3fa56be6ee983173c6b662bb412a7b862 /railties/lib | |
parent | 902ae14e650d87bc0ba3d34030c9bb38646c0d9f (diff) | |
download | rails-938243feb9ea177b84276821818c9eed66064340.tar.gz rails-938243feb9ea177b84276821818c9eed66064340.tar.bz2 rails-938243feb9ea177b84276821818c9eed66064340.zip |
do not require ruby-debug automatically. please require it if you have declared it as a dependency
Diffstat (limited to 'railties/lib')
-rw-r--r-- | railties/lib/rails/test_help.rb | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/railties/lib/rails/test_help.rb b/railties/lib/rails/test_help.rb index 38f2f651f4..f81002328f 100644 --- a/railties/lib/rails/test_help.rb +++ b/railties/lib/rails/test_help.rb @@ -39,14 +39,3 @@ class ActionDispatch::IntegrationTest @routes = Rails.application.routes end end - -begin - require_library_or_gem 'ruby-debug' - Debugger.start - if Debugger.respond_to?(:settings) - Debugger.settings[:autoeval] = true - Debugger.settings[:autolist] = 1 - end -rescue LoadError - # ruby-debug wasn't available so neither can the debugging be -end |