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?

link|improve this question

feedback

7 Answers

up vote 17 down vote accepted

First of all, update your RVM installation by running rvm update.

To make sure you're running the new RVM version, you'll then need to run rvm reload (or just open a new terminal).

Once that's done, you can ask RVM to list the ruby versions available to install by running rvm list known.

In the output you should now see:

# MRI Rubies
...
[ruby-]1.9.2[-p136]
...

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 rvm install 1.9.2 - and wait for it to compile!

link|improve this answer
3  
For those who are getting ERROR: rvm update has been removed.rvm get latest / rvm get head are the correct ways to upgrade rvm now. – jibiel Oct 25 '11 at 8:25
feedback

Upgrade ruby interpreter and keep existing gemsets:

$ rvm upgrade 1.9.2 1.9.2-p0
Are you sure you wish to upgrade from ruby-1.9.2-p0 to ruby-1.9.2-p136? (Y/n): Y

It replaces the previous version, which to me is better, avoids clutter.

link|improve this answer
2  
Also, you can rvm list known in order to see the available ruby versions that you can upgrade to. – James Chevalier Apr 20 at 13:47
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.

link|improve this answer
feedback

like this:

rvm update; rvm reload
rvm install ruby-1.9.2-p136 
rvm --default ruby-1.9.2-p136
link|improve this answer
I like this answer. I feel that upgrading the version of ruby sort of defeats the purpose of using rvm. Installing a separate version alongside p0 and then declaring the newer (or whichever) version as the default seems elegant. – Tass Dec 28 '11 at 22:21
feedback

I guess its rvm install 1.9.2-head

You can see available rubies with rvm list known

link|improve this answer
will head get the latest patch level? i thought it was for the very latest version, meaning it could be something unstable and experimental. – Lan Jan 1 '11 at 14:23
Ahaa, true. I mixed the latest and patch level. – Heikki Jan 1 '11 at 14:26
feedback

This blog post should be helpful: http://pogodan.com/blog/2011/09/06/ruby-1-9-3-for-development

essentials:

rvm get head
rvm reload

wget https://gist.github.com/raw/1008945/4edd1e1dcc1f0db52d4816843a9d1e6b60661122/ruby-1.9.2p290.patch
rvm install ruby-1.9.2-p290 --patch ruby-1.9.2p290.patch -n patched
link|improve this answer
While this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference. – Bill the Lizard Sep 14 '11 at 20:28
feedback

npad's answer definitely lays out the basics so I won't reiterate those steps, but there are several answers here suggesting using rvm upgrade. I know that rvm gives you the option, but it's a bit of a dangerous one.

IMO, the safer and more "rvm way" is to first rvm install the new ruby version, then use the rvm gemset copy command to copy your gemset(s) to the new ruby version, e.g. rvm gemset copy 1.9.2-p0@some-gemset 1.9.2-p290@some-gemset. Then you can easily switch your project to using the newly-copied gemset (I recommend using an .rvmrc file in your project directory) and see if your code fails. If it does, changing back to the old ruby version is just a matter of switching the gemset.

But even if you don't use gemsets (though I assume you do since you tagged rails on this question), the use of rvm upgrade can lead to unexpected failures. And if your code breaks, now you have to reinstall the old version again. Just take a bit more time and do it the clean way.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.