没有ruby-1.9.2-p321的源代码,它提供了debugger-ruby_core_source gem

时间:2013-12-09 02:00:03

标签: ruby-on-rails rubygems

我最近更新了Mavericks。为xcode添加了命令行工具。尝试“捆绑更新调试器”,以及我找到的所有其他修复程序,包括此rake add_source以包含此处找到的相应标头:http://sponsorpay.github.io/blog/2012/06/11/ruby-debugger-and-no-source-for-ruby-error/,我仍然无法将我的项目推送到heroku而没有错误。任何帮助表示赞赏。提前致谢。

更新:找到了这个,但不知道该怎么做。 “诸如debugger-linecache之类的Gems需要Ruby的显式补丁级别,这对于开发来说很好,但是不应该在生产中使用。如果你有这些Gems中的一个 在生产中并且Ruby的补丁升级后,您的部署将失败。

修复方法是将您的依赖项移出Gemfile的生产组。“ 这是错误:

安装debugger-linecache(1.2.0)        安装debugger-ruby_core_source(1.2.4)        安装调试器(1.6.3)        Gem :: Installer :: ExtensionBuildError:错误:无法构建gem原生扩展。

   /tmp/ruby-1.9.2/bin/ruby extconf.rb
   checking for rb_method_entry_t.body in method.h... no
   checking for vm_core.h... no
   checking for rb_method_entry_t.body in method.h... no
   checking for vm_core.h... no
   Makefile creation failed
   **************************************************************************
   No source for ruby-1.9.2-p321 provided with debugger-ruby_core_source gem.
   **************************************************************************
   *** extconf.rb failed ***
   Could not create Makefile due to some reason, probably lack of
   necessary libraries and/or headers.  Check the mkmf.log file for more
   details.  You may need configuration options.

   Provided configuration options:
   --with-opt-dir
   --without-opt-dir
   --with-opt-include
   --without-opt-include=${opt-dir}/include
   --with-opt-lib
   --without-opt-lib=${opt-dir}/lib
   --with-make-prog
   --without-make-prog
   --srcdir=.
   --curdir
   --ruby=/tmp/ruby-1.9.2/bin/ruby
   --with-ruby-dir
   --without-ruby-dir
   --with-ruby-include
   --without-ruby-include=${ruby-dir}/include
   --with-ruby-lib
   --without-ruby-lib=${ruby-dir}/lib


   Gem files will remain installed in /tmp/build_3f34841b-c8ae-4ac7-a6ff-9cdb26e947fa/vendor/bundle/ruby/1.9.1/gems/debugger-1.6.3 for inspection.
   Results logged to /tmp/build_3f34841b-c8ae-4ac7-a6ff-9cdb26e947fa/vendor/bundle/ruby/1.9.1/gems/debugger-1.6.3/ext/ruby_debug/gem_make.out
   An error occurred while installing debugger (1.6.3), and Bundler cannot
   continue.
   Make sure that `gem install debugger -v '1.6.3'` succeeds before bundling.

!  !无法通过Bundler安装gem。  !

!推送拒绝,无法编译Ruby应用程序

2 个答案:

答案 0 :(得分:1)

我将此添加到我的gemfile

gem 'debugger', group: [:development, :test] 

到我的宝石文件。

使用rm Gemfile.lock删除了我的宝石锁文件。跑bundle install,推进成功。

答案 1 :(得分:0)

我的答案是使用以下命令根据以下博客更新调试器:

bundle update debugger-ruby_core_source

http://blog.wercker.com/2014/01/02/Ruby-Gems-and-caches.html

此错误报告也支持该方法:https://github.com/cldwalker/debugger/issues/63