Created
May 26, 2011 19:10
-
-
Save surfacedamage/993815 to your computer and use it in GitHub Desktop.
Getting ruby-debug commands to work in windows environment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
If you find that after installing ruby-debug in windows, you don't see "continue", | |
"raise", or "disassemble" ... it's because those commands on the file system have | |
an uppercase "RB" file extension. SURPRISE! | |
Fix it. | |
1. cd to where your ruby-debug gem is installed | |
2. then cd to | |
\cli\ruby-debug\commands | |
3. change them capital letters to lower | |
move continue.RB continue.rb | |
move disassemble.RB disassemble.rb | |
move raise.RB raise.rb |
Thanks -- much appreciated!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Sorry about that. This was fixed in SVN and there is a ruby-debug 0.10.5rc1 "release candidate" gem http://rubyforge.org/frs/?group_id=1900