Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse DLTK and Ruby Fast Debugger

I'm trying to debug Ruby scripts with Eclipse (DLTK installed) on a Windows Vista x64 machine and Ruby 1.92 environment.

I installed ruby-debug19, ruby-debug-base19, ruby-debug-ide19 gems, but I still can't debug Ruby scripts with Eclipse. dlt it says the following,

Debugging Engine not started The 'Fast Ruby Debugger (ruby-debug)' is selected, but the 'ruby-debug' gem doesn't seem to be installed in the selected Ruby Interpreter (C:\Ruby192\bin\ruby.exe)

I also added the c:\Ruby192\lib\ruby\gems folder to the system library paths of the Ruby interpreter settings in Eclipse.

How do I fix this problem?

like image 671
NightWolf Avatar asked May 17 '11 07:05

NightWolf


1 Answers

On Linux, I had to do the following:

$ gem install ruby-debug
$ gem install ruby-debug-base
$ gem install ruby-debug-ide

Might this also work on Windows (perhaps through cygwin or cmd.exe)?

like image 104
Michael Galaxy Avatar answered Oct 17 '22 20:10

Michael Galaxy