From: Shawn Hart Date: 2009-10-11T07:13:34+09:00 Subject: Re: Need help invoking debug > What's happening is probably that you have RUBYOPT=-rubygems > > which is a shortcut way to require rubygems, sometimes setup by the one > click installer. So when you ruby ruby -r debug some_file > > it ends up running a require BEFORE it runs that file, and, > conveniently, brings you to a debug prompt in the pre-file file. > > To get around it: > gem install ruby-debug > then within debugtest.rb > require 'ruby-debug' > debugger > Cheers! > -r Thanks for the advice guys.. RP I did what you suggested and it seemed to work, although some of the commands don't seem to work (following the example in the book). But I was able to list and step through the code.. maybe a different version of ruby-debug from that used in the book. I'm moving on.. I figure I can come back to this if it proves to be important when I have some more knowledge. Thanks again for the help. -- Posted via http://www.ruby-forum.com/.