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
This commit is contained in:
Scott Barron 2006-11-03 18:20:53 +00:00
parent 7f6c5a5654
commit ceb3859672
1 changed files with 2 additions and 8 deletions

View File

@ -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'