如何避免来自 RubyGems 的弃用消息?

发布于 2024-11-05 22:05:01 字数 360 浏览 1 评论 0原文

gem update --system 之后,当我执行与 ruby​​gems 相关的操作时,我收到以下消息:

注意: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 调用。

我怎样才能避免它?我尝试删除 ruby​​gems 并重新安装,但这并没有解决问题。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

好多鱼好多余 2024-11-12 22:05:01

您可能需要重新生成宝石规格。

安装 RubyGems 1.8.1 后,您将在加载现有 gem 时看到弃用信息。运行 gem pristine --all --no-extensions 来安全地重新生成 gem 规范。

http://blog.segment7.net/2011/05/05 /rubygems-1-8-1

You probably need to regenerate your gem specifications.

After installing RubyGems 1.8.1 you will see deprecations when loading your exsting gems. Run gem pristine --all --no-extensions to regenerate your gem specifications safely.

http://blog.segment7.net/2011/05/05/rubygems-1-8-1

比忠 2024-11-12 22:05:01

查看 ruby​​gems 的安装位置:

$ gem list -d rubygems

找到其中的 deprecate.rb 文件,并使 self.skip 类方法始终返回 true。

或者如果您使用的是 RVM,则以下命令将修复它:

rvm rubygems current

Look where your rubygems are installed:

$ gem list -d rubygems

Find the deprecate.rb file there, and make the self.skip class method always return true.

or If you're using RVM, the following command will fix it:

rvm rubygems current

再生宝石规格对我有用:
sudo gem pristine --all --no-extensions

参见:
https://github.com/rubygems/rubygems/blob/master/History.txt

您还可以降级您的 ruby​​gems 版本:
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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文