我跑了这个:
gem install ruby-debug19
在我的黄瓜env.rb
档案中,我有这个:
require 'ruby-debug'
但是当我尝试跑步时,我得到了这个例外:
/home/skendall/.rvm/gems/ruby-1.9.3-p0/gems/ruby-debug-base19-0.11.25/lib/ruby_debug.so: undefined symbol: ruby_current_thread - /home/skendall/.rvm/gems/ruby-1.9.3-p0/gems/ruby-debug-base19-0.11.25/lib/ruby_debug.so (LoadError)
我需要做些什么才能让ruby-debug与1.9.3-p0一起使用?
答案 0 :(得分:22)
我也碰到了这个,并在Ruby 1.9.3 and ruby-debug中找到了解决方案。您需要安装尚未正式发布的ruby-debug-base19和linecache19版本。当前发布的版本确实会导致您的例外。
使用this gist。
#To install ruby-debug on Ubuntu ruby-1.9.3 you need to download from http://rubyforge.org/frs/?group_id=8883
linecache19-0.5.13.gem
ruby_core_source-0.1.5.gem
ruby-debug19-0.11.6.gem
ruby-debug-base19-0.11.26.gem
#Then in your console
export RVM_SRC=/your/path/to/ruby-1.9.3
# Note, your source path should be something like /home/user/.rvm/src/ruby-1.9.3-p0
gem install archive-tar-minitar
gem install ruby_core_source-0.1.5.gem -- --with-ruby-include=/$RVM_SRC
gem install linecache19-0.5.13.gem -- --with-ruby-include=/$RVM_SRC
gem install ruby-debug-base19-0.11.26.gem -- --with-ruby-include=/$RVM_SRC
gem install ruby-debug19-0.11.6.gem -- --with-ruby-include=/$RVM_SRC
答案 1 :(得分:3)
答案 2 :(得分:3)
如果由于你的rvm / bundler设置而导致解决方法很烦人和/或不可能(我就是这种情况),请考虑pry和pry-debug plugin。无论如何,Pry可能比ruby-debug更有用。