Ruby 宝石升级问题

Ruby gems issue with upgrading

我运行rails generate controller welcome index 我收到警告 You're using Rubygems 2.0.14 with Spring. Upgrade to at least Rubygems 2.1.0 and run gem pristine --all

我更新了 gem --system 并且还在 ~/.bashrc 中添加了路径,但仍然是相同的结果,有什么建议吗?

因为我以前有一个较旧的 Ruby 2.0 版,所以它让 apache 感到困惑。我可以明确地告诉 apache 使用哪个目录,或者使用 RVM(Ruby 版本管理器)来完成所有工作。只需要完成这些步骤:

安装 RVM:

rvm get stable --auto-dotfiles

然后说出你倾向于使用哪个版本:

rvm use 2.2.0

更新宝石

gem install rails

现在准备出发!

转到 Gemfile.lock 并更改 Ruby 的版本。或许可以。

您使用的是哪个 Ruby 管理器?