From ceb3859672ddba6257ffc59c2db4fd99d98ffc9b Mon Sep 17 00:00:00 2001 From: Scott Barron Date: Fri, 3 Nov 2006 18:20:53 +0000 Subject: Turns out call_stack slows down the entire app, so just warn that breakpoints don't work with 1.8.5 for now. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5424 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- railties/lib/breakpoint.rb | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'railties/lib') diff --git a/railties/lib/breakpoint.rb b/railties/lib/breakpoint.rb index 7aa561e1a2..a4ed787b01 100644 --- a/railties/lib/breakpoint.rb +++ b/railties/lib/breakpoint.rb @@ -17,14 +17,8 @@ require 'irb' if RUBY_VERSION == '1.8.5' - begin - require 'rubygems' - require 'breakpoint185' - rescue LoadError - def Binding.of_caller(&block) - raise """Breakpoints do not work in Ruby 1.8.5 without call_stack. -gem install call_stack or see http://eigenclass.org/hiki.rb?call_stack""" - end + def Binding.of_caller(&block) + raise "Breakpoints are not currently working with Ruby 1.8.5" end else require 'binding_of_caller' -- cgit v1.2.3