我正试图在我的TextMate方法之间找到一个合适的导航。我很想把它们的列表放在抽屉里,但我想现在还没有这样的解决方案,对吧?因此,我正在尝试设置RubyAMP与通过RVM安装的Ruby 1.9.1-p378一起工作,但遇到了一些麻烦。RubyAMP需要ruby-debug,下面是我尝试安装gem时得到的结果
$ rvm gem install ruby-debug
info: ruby-1.9.1-p378: ruby 1.9.1p378 (2010-01-10 revision 26273) [x86_64-darwin10]
Building native extensions. This could take a while...
ERROR: Error installing ruby-debug:
ERROR: Failed to build gem native extension.
/Users/andrei/.rvm/rubies/ruby-1.9.1-p378/bin/ruby extconf.rb
Can't handle 1.9.x yet
*** extconf.rb failed ***然而,the gem page说它应该与1.9.x一起工作。我怎么才能修复它?
发布于 2010-07-18 14:41:43
试试这个(来自https://rvm.io/support/troubleshooting):
rvm gem install ruby-debug19 -- --with-ruby-include="$rvm_src_path/ruby-1.9.1-p378/"发布于 2010-11-24 18:51:39
最新的ruby 1.9.2-p0可以顺利地运行gem install ruby-debug19。
发布于 2010-07-22 05:34:14
有关最新的ruby 1.9.2-preview3
gem install ruby-debug19 -- --with-ruby-include="$rvm_src_path/ruby-1.9.2-preview3"https://stackoverflow.com/questions/3219065
复制相似问题