My current version of ruby is ruby 1.9.2p0 (2010-08-18 revision 29036) [x86_64-darwin10.5.0] but I want to update it to the latest patch level using rvm. How can I do this?
| |||
|
feedback
|
|
First of all, update your RVM installation by running To make sure you're running the new RVM version, you'll then need to run Once that's done, you can ask RVM to list the ruby versions available to install by running In the output you should now see:
The square brackets around the patch level indicate that this is currently RVM's default patch level for ruby 1.9.2. Finally, to install the new ruby version, just run | |||||
feedback
|
|
Upgrade ruby interpreter and keep existing gemsets:
It replaces the previous version, which to me is better, avoids clutter. | |||||
feedback
|
|
You can install any patch level by following the page in their wiki. Also, each ruby is independent, so you aren't really 'upgrading and keeping the gems' but installing a new patch version and then installing the gems in that new ruby environment. This may be were gemsets come into play, however I don't use them. Do not forget to update your rvm too, just in case it's been awhile. | |||
|
feedback
|
|
like this:
| ||||
feedback
|
|
I guess its You can see available rubies with | |||||
feedback
|
|
This blog post should be helpful: http://pogodan.com/blog/2011/09/06/ruby-1-9-3-for-development essentials:
| ||||
feedback
|
|
npad's answer definitely lays out the basics so I won't reiterate those steps, but there are several answers here suggesting using IMO, the safer and more "rvm way" is to first But even if you don't use gemsets (though I assume you do since you tagged rails on this question), the use of | |||
|
feedback
|