Debug ruby ​​with eclipse dltk

I am trying to debug ruby ​​scripts using eclipse helios (dltk) on win7 x64 machine and ruby1.92 environment

I installed ruby-debug19, ruby-debug-base19, ruby-debug-ide19, but still cannot debug rb scripts with eclipse dlt, it says the following,

Debugging engine not running Selected “Fast Ruby Debugger (ruby-debug)”, but the stone “ruby-debug” does not 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 path to the ruby ​​interpreter interpreter system library in eclipse.

Any ideas?

+7
source share
2 answers

Try setting the GEM_HOME and GEM_PATH environment variables on your computer.

0
source

This is what my programmer prof told me, but he told me that there is no way to use the debugger for Ruby> 1.8. So, maybe if Ruby 1.8 is suitable for your requirements, you can use the 1.8 interpreter for debugging.

0
source

All Articles