I'm on Rails 4.0.4.
I would like to try out the latest relase candidate for 4.1.
How would I upgrade my Rails application to the latest RC?
You can run bundle update
to update all your gems at once.
If you just want to update a particular gem (such as rails) you can run bundle update rails
.