When I try to debug a ruby file I got the following message:
$ ruby -rdebug test.rb
Debug.rb
Emacs support available.
/usr/local/lib/ruby/site_ruby/1.8/ubygems.rb:10:require ‘rubygems’
(rdb:1)
whenever I try to debug than my test.rb I run into problems with that
rubygems.rb as you can see above:
(rdb:1) b test:3
Set breakpoint 1 at test:3
(rdb:1) c
/usr/local/lib/ruby/1.8/rational.rb:78: undefined method
gcd’ for
Rational(1,
2):Rational’ (NoMethodError)
from /usr/local/lib/ruby/site_ruby/1.8/rubygems.rb:882:in
require' from /usr/local/lib/ruby/site_ruby/1.8/rubygems.rb:882 from /usr/local/lib/ruby/site_ruby/1.8/ubygems.rb:10:in
require’
from /usr/local/lib/ruby/site_ruby/1.8/ubygems.rb:10
/usr/local/lib/ruby/1.8/rational.rb:78: gcd = num.gcd(den)
(rdb:1)
Can anyone help me?