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 /actionpack | |
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 'actionpack')
-rw-r--r-- | actionpack/test/abstract_unit.rb | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/actionpack/test/abstract_unit.rb b/actionpack/test/abstract_unit.rb index 92597e40ff..60534a9746 100644 --- a/actionpack/test/abstract_unit.rb +++ b/actionpack/test/abstract_unit.rb @@ -36,14 +36,6 @@ require 'active_record' require 'action_controller/caching' require 'action_controller/caching/sweeping' -begin - require 'ruby-debug' - Debugger.settings[:autoeval] = true - Debugger.start -rescue LoadError - # Debugging disabled. `gem install ruby-debug` to enable. -end - require 'pp' # require 'pp' early to prevent hidden_methods from not picking up the pretty-print methods until too late module Rails |