First use of debugger weird

R

RichardOnRails

Hi,

I just wrote a toy program:
K:\_Projects\Ruby\_Ruby_Techniques\Debugging\Test2.rb

I invoked the debugger with:
ruby -rdebug K:/_Projects/Ruby/_Ruby_Techniques/Debugging/Test2.rb

I got 5 lines (counting blank lines)
Debug.rb
Emacs support available.

K:/_Utilities/ruby186-26_rc2/ruby/lib/ruby/site_ruby/1.8/ubygems.rb:
10:require 'rubygems'
(rdb:1)

I gave the command "list 5" and got:
(rdb:1) list 5
[0, 9] in K:/_Utilities/ruby186-26_rc2/ruby/lib/ruby/site_ruby/1.8/
ubygems.rb
1 # This file allows for the running of rubygems with a nice
2 # command line look-and-feel: ruby -rubygems foo.rb
3 #--
4 # Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and
others.
5 # All rights reserved.
6 # See LICENSE.txt for permissions.
7 #++
8
9
(rdb:1)

Apparently, it gave me the first lines of debug.rb rather than the
first lines of the program I'm trying to process with the debugger:
Test2.rb.

I used https://www6.software.ibm.com/developerworks/education/os-distruby/section3.html
as a guide, and it suggested that the debugging would start with the
subject program.

What am I doing wrong? I'm running ruby186-26_rc2 over WinXP-Pro/SP2.

Thanks in Advance,
Richard
 
R

RichardOnRails

Hi,

I just wrote a toy program:
K:\_Projects\Ruby\_Ruby_Techniques\Debugging\Test2.rb

I invoked the debugger with:
ruby -rdebug K:/_Projects/Ruby/_Ruby_Techniques/Debugging/Test2.rb

I got 5 lines (counting blank lines)
Debug.rb
Emacs support available.

K:/_Utilities/ruby186-26_rc2/ruby/lib/ruby/site_ruby/1.8/ubygems.rb:
10:require 'rubygems'
(rdb:1)

I gave the command "list 5" and got:
(rdb:1) list 5
[0, 9] in K:/_Utilities/ruby186-26_rc2/ruby/lib/ruby/site_ruby/1.8/
ubygems.rb
1 # This file allows for the running of rubygems with a nice
2 # command line look-and-feel: ruby -rubygems foo.rb
3 #--
4 # Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and
others.
5 # All rights reserved.
6 # See LICENSE.txt for permissions.
7 #++
8
9
(rdb:1)

Apparently, it gave me the first lines of debug.rb rather than the
first lines of the program I'm trying to process with the debugger:
Test2.rb.

I used https://www6.software.ibm.com/developerworks/education/os-distruby/se...
as a guide, and it suggested that the debugging would start with the
subject program.

What am I doing wrong? I'm running ruby186-26_rc2 over WinXP-Pro/SP2.

Thanks in Advance,
Richard

Apparently, there's little or no interest in the Ruby debugger.

Happily, I found the rdebug plug-in. It works the way I expected.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,770
Messages
2,569,583
Members
45,073
Latest member
DarinCeden

Latest Threads

Top