I’ve been away from programming for a few months but I’m back now and surprised to rails already at version 3.2.8. I feel slightly rusty and forgot how to successfully upgrade my ruby on rails version to the latest.
I’m currently using version 3.2.3
Is there a standard way of upgrading? I remember the last time I upgraded I had to modify some lines in the gemfile. A google search didn’t help so I would appreciate a solution from my favourite place thanks.
Kind regards
If you just want to install the latest rails gem
If it’s a rails 3.2.3 app
Gemfile, changing the linegem 'rails', '3.2.3'togem 'rails', '3.2.8'bundle update rails(from this so question)