|
|
|
|
|
by lengarvey
4902 days ago
|
|
If you're running a relatively new version of Rails (hopefully 3.2.10) you can just goto your app on your dev machine and type: bundle update rails Then commit and deploy in the usual manner. You'll probably experience no issues with your application, but it's good practice to run your test suite before you do any sort of production deploy anyway. If you're running an older version of Rails (pre bundler) or if you don't have a solid test-suite, you'll have a tougher time updating. But you definitely need to put aside time to figure it out now. |
|