如何避免来自 RubyGems 的弃用消息?
在 gem update --system
之后,当我执行与 rubygems 相关的操作时,我收到以下消息:
注意:Gem::Specification#default_executable= 已弃用且无替代品。将于 2011 年 10 月 1 日或之后删除。
Gem::Specification#default_executable= 从 /usr/lib/ruby/gems/1.8/specifications/rubygems-update-1.7.2.gemspec:11 调用。
我怎样才能避免它?我尝试删除 rubygems 并重新安装,但这并没有解决问题。
After gem update --system
, when I do something related to rubygems, I receive this message:
NOTE: Gem::Specification#default_executable= is deprecated with no replacement. It will be removed on or after 2011-10-01.
Gem::Specification#default_executable= called from /usr/lib/ruby/gems/1.8/specifications/rubygems-update-1.7.2.gemspec:11.
How can I avoid it? I've tried to remove rubygems and reinstall, but that didn't fix it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可能需要重新生成宝石规格。
http://blog.segment7.net/2011/05/05 /rubygems-1-8-1
You probably need to regenerate your gem specifications.
http://blog.segment7.net/2011/05/05/rubygems-1-8-1
查看 rubygems 的安装位置:
找到其中的
deprecate.rb
文件,并使self.skip
类方法始终返回 true。或者如果您使用的是 RVM,则以下命令将修复它:
Look where your rubygems are installed:
Find the
deprecate.rb
file there, and make theself.skip
class method always return true.or If you're using RVM, the following command will fix it:
再生宝石规格对我有用:
sudo gem pristine --all --no-extensions
参见:
https://github.com/rubygems/rubygems/blob/master/History.txt
您还可以降级您的 rubygems 版本:
sudo gem update --system 1.7.1
Regenerating gem specifications worked for me:
sudo gem pristine --all --no-extensions
See:
https://github.com/rubygems/rubygems/blob/master/History.txt
You can also downgrade your version of rubygems:
sudo gem update --system 1.7.1