aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--railties/lib/breakpoint.rb10
1 files changed, 2 insertions, 8 deletions
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'