我以为我升级了 Rails 版本,但没有用

发布于 2024-11-08 15:09:43 字数 287 浏览 0 评论 0原文

我有一个在 Rails 2.3.3 上运行的应用程序。

我编辑了我的environment.rb

RAILS_GEM_VERSION = '2.3.8' unless defined? RAILS_GEM_VERSION

然后在我的控制台中执行了rakerails:update

>> Rails.version
    2.3.3

我忘记做什么?

I have an app running on Rails 2.3.3.

I edited my environment.rb

RAILS_GEM_VERSION = '2.3.8' unless defined? RAILS_GEM_VERSION

Then performed rake rails:update

In my console:

>> Rails.version
    2.3.3

What am I forgetting to do?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

街角迷惘 2024-11-15 15:09:43

尝试手动安装 Rails 2.3.8

gem install Rails -v=2.3.8

在某些环境中,这效果更好(我发现使用 rvm 时就是这种情况)。

Try manually installing rails 2.3.8

gem install rails -v=2.3.8

In some env's this works better (I found this to be the case when using rvm).

旧瑾黎汐 2024-11-15 15:09:43

尝试执行“捆绑更新”,这将更新锁定文件。

try doing "bundle update", this will update the lock file.

你的背包 2024-11-15 15:09:43

您可能只是将 Rails 宝石冻结到您的项目中。这将强制应用程序加载冻结版本。只需删除供应商/导轨,您就应该准备就绪。然后,如果需要,您可以冻结 2.3.8。您是否有理由不直接使用 2.3.11?

You probably just froze your rails gems into your project. This will force the application to load the frozen version. Just remove vendor/rails and you should be all set. Then you can freeze 2.3.8 if you need to. Is there a reason you aren't just going to 2.3.11?

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