diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2007-04-28 15:57:29 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2007-04-28 15:57:29 +0000 |
commit | 70ac560e42644938392381ecd52efd7fb0260323 (patch) | |
tree | dbc0bc73d480bf3af99aef2f4be16afa183f4850 /activerecord | |
parent | 1d5c34c2c27370356e8cd1ef478111802b6a5af4 (diff) | |
download | rails-70ac560e42644938392381ecd52efd7fb0260323.tar.gz rails-70ac560e42644938392381ecd52efd7fb0260323.tar.bz2 rails-70ac560e42644938392381ecd52efd7fb0260323.zip |
Removed breakpointer and Binding.of_caller in favor of relying on ruby-debug by Kent Sibilev since the breakpointer has been broken since Ruby 1.8.4 and will not be coming back [DHH]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6611 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/openbase_adapter.rb | 1 | ||||
-rwxr-xr-x | activerecord/test/abstract_unit.rb | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/openbase_adapter.rb b/activerecord/lib/active_record/connection_adapters/openbase_adapter.rb index 71143b2202..57d16d47b4 100644 --- a/activerecord/lib/active_record/connection_adapters/openbase_adapter.rb +++ b/activerecord/lib/active_record/connection_adapters/openbase_adapter.rb @@ -198,7 +198,6 @@ module ActiveRecord sql_type_name(row["typename"],row["length"]), row["notnull"] ) - # breakpoint() if row["fieldname"] == "content" end columns end diff --git a/activerecord/test/abstract_unit.rb b/activerecord/test/abstract_unit.rb index 5e94fa11b4..c3d4dbe591 100755 --- a/activerecord/test/abstract_unit.rb +++ b/activerecord/test/abstract_unit.rb @@ -4,8 +4,6 @@ $:.unshift(File.dirname(__FILE__) + '/../../activesupport/lib') require 'test/unit' require 'active_record' require 'active_record/fixtures' -require 'active_support/binding_of_caller' -require 'active_support/breakpoint' require 'connection' # Show backtraces for deprecated behavior for quicker cleanup. |