使用 eclipse dltk 调试 ruby
我正在尝试在win7 x64机器和ruby1.92环境上使用eclipse helios(安装了dltk)调试ruby脚本
我安装了ruby-debug19,ruby-debug-base19,ruby-debug-ide19 gems但仍然无法调试rb带有 eclipse dlt 的脚本如下所示,
调试引擎未启动 选择了“快速 Ruby 调试器 (ruby-debug)”,但所选 Ruby 解释器中似乎未安装“ruby-debug”gem (C:\Ruby192\bin\ruby.exe)
我还添加了 c :\Ruby192\lib\ruby\gems 文件夹到 eclipse 中 ruby 解释器设置的系统库路径。
有什么想法吗?
I'm trying to debug ruby scripts with eclipse helios (dltk installed) on a win7 x64 machine and ruby1.92 environment
I installed ruby-debug19, ruby-debug-base19, ruby-debug-ide19 gems but still can't debug rb scripts with eclipse dlt it says 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 c:\Ruby192\lib\ruby\gems folder to system library paths of ruby interpreter settings in eclipse.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试在计算机上设置
GEM_HOME
和GEM_PATH
环境变量。Try setting the
GEM_HOME
andGEM_PATH
environment variables on your machine.这只是我的编程教授告诉我的,但他告诉我实际上没有办法使用 Ruby 的调试器 > 1.8.因此,如果 Ruby 1.8 适合您的要求,您可以使用 1.8 解释器进行调试。
It's just what I've been told by my programming-prof., but he told me there is acutally no way to use the debugger for Ruby > 1.8. So, maybe, if Ruby 1.8 suits for your requirements, you could use the 1.8 interpreter for debugging.