我如何在 Bluemix 中升级 Rubygems?
How do I upgrade Rubygems in Bluemix?
如何在 Bluemix 中升级 Rubygems?我收到这条消息:
Rubygems 2.0.14.1 is not threadsafe, so your gems must be installed one at a time. Upgrade to Rubygems 2.1.0 or higher to enable parallel gem installation.
因为我有很多宝石,所以我很想使用这个功能。
我正在使用 Ruby buildpack 版本 1.6.7 和 Ruby 2.0.0.
gem install rubygems-update
update_rubygems
# gem update --system # in fact, you are done on the previous step
按照说明使用 gem update --system
here
通过在较新的 buildpack 中使用较新的 Ruby 版本 2.2.2 解决。
如何在 Bluemix 中升级 Rubygems?我收到这条消息:
Rubygems 2.0.14.1 is not threadsafe, so your gems must be installed one at a time. Upgrade to Rubygems 2.1.0 or higher to enable parallel gem installation.
因为我有很多宝石,所以我很想使用这个功能。 我正在使用 Ruby buildpack 版本 1.6.7 和 Ruby 2.0.0.
gem install rubygems-update
update_rubygems
# gem update --system # in fact, you are done on the previous step
按照说明使用 gem update --system
here
通过在较新的 buildpack 中使用较新的 Ruby 版本 2.2.2 解决。