Ruby debug newbie help

Hello all,
I'm learning Ruby and I got a little problem with my first try at
debugging.
I work on Windows XP SP3, with a fresh install of :
rubyinstaller-1.9.2-p180.exe
DevKit-tdm-32-4.5.1-20101214-1400-sfx.exe

my 'problem' is with a long listing that appear on screen before the
debugging session. the debug seems to work normally after that (just
made a few try for now).
is it the 'normal' way and is there a way to desactive this listing...?

here is a screen copy of the end of the listing and a small debugging
session : http://img30.imageshack.us/i/rdebuglog.png/

thanks for your help.
Fred

···

--
Posted via http://www.ruby-forum.com/.

Sorry, I forgot.. my command line was :
ruby -rdebug RSU.rb

···

--
Posted via http://www.ruby-forum.com/.

don't do -rdebug
do

require 'ruby-debug'
debugger

have you installed ruby-debug19 gem?

···

--
Posted via http://www.ruby-forum.com/.

no, I only tried to use the debug version included in ruby, not the
'ruby-debug' one...

···

--
Posted via http://www.ruby-forum.com/.

probably some bug in the built in debug.rb file
I'd ping core about it.

···

--
Posted via http://www.ruby-forum.com/.

Ok, thank you... I'm beginning with Ruby and can't take much time to
understand this kind of problem.
so I looked at ruby-debug19 and installed it. it seems to work well...
:slight_smile:
I can keep learning..
thanks.
Fred

···

--
Posted via http://www.ruby-forum.com/.