Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 Rails 3.2.6 应用程序,我想升级到 3.2.12。我需要去 3.2.7 然后 3.2.8 然后 3.2.9 等等吗?
或者我可以直接去 3.2.12 吗?
在这种情况下,推荐的最佳做法是什么?
您可以在 gemfile 中更改 rails 版本并运行您的测试。很可能您不会有任何问题,但请确保您至少测试了基本功能
您不需要按顺序升级 rails 版本。您可以将版本直接从 3.2.6 升级到 3.2.12
只需转到 Gemfile 并找到带有gem 'rails', '3.2.6' 的行,将其替换为gem 'rails', '3.2.12'并输入bundle update。
bundle update