I installed RVM with a few versions of Ruby-interpreters some time ago. How I can to update it, because new versions are already released?

I found only one way: rvm install 1.9.2-rc1 && rvm remove 1.9.2-preview1, but my gems are lost. Can I update branches time to time? I haven't found any tips in the documentation.

link|improve this question

40% accept rate
1  
Can you change the accepted answer because of the rvm upgrade command? – joelparkerhenderson May 22 at 22:04
feedback

3 Answers

up vote 46 down vote accepted

Use the rvm upgrade 1.9.2-preview1 1.9.2-rc1 command or watch this screencast

link|improve this answer
what will happen to my gemsets of 1.9.2-preview1 – luckydev Mar 16 '11 at 12:02
1  
according to rvm help upgrade: Will migrate gemsets, wrappers, aliases and environment files. – asymmetric Apr 11 '11 at 12:44
Also, current versions of RVM upgrade in an expected order rvm upgrade [source ruby] [destination ruby]. Wayne fixed that :) – Abel Martin Oct 3 '11 at 16:53
1  
rvm upgrade is the recommended way, so this should be the accepted answer. – kynan Dec 24 '11 at 11:25
feedback

[Edit: rvm has a new command to upgrade-- you likely want to use the answer by andy318]

AFAIK, there is no automatic way to do this at the moment, but something like this enables you to keep your gems:

 rvm use 1.9.2-preview1
 rvm gemset export
 rvm install 1.9.2-rc1
 rvm use 1.9.2-rc1
 rvm gemset import
 rvm remove 1.9.2-preview1

Now, for automating updates, you would have to detect version changes, that is easy, as you can simply use the return value of rvm use 1.9.2. Finding out what the new version is (1.9.2-rc1) is unnecessary, as it is aliased as 1.9.2. The trick is to find the latest installed version of 1.9.2. You could do something like this in a cron job:

# make sure you source rvm first
rvm update --head
rvm reload
if [ ! rvm use 1.9.2 ]; then
  for ruby_version in `rvm list strings`; do
    # find the latest version of 1.9.2
    case $ruby_version in
      ruby-1.9.2-*) latest192=$ruby_version;;
    esac
  done
  rvm use $latest192
  rvm gemset export 192.gems
  rvm install 1.9.2
  rvm use 1.9.2
  rvm gemset import 192
  rvm remove $latest192
fi

Did not try that, but I have similar code in my update script. I also slipped in a gem update and other stuff.

Feel free to visit the #rvm IRC channel on Freenode.

link|improve this answer
1  
Use rvm upgrade instead, see below. – gucki Feb 8 at 8:40
feedback

Current rvm version provides an easier way to do this. The 'upgrade' option will migrate gem sets, wrappers and environment files -

$ rvm upgrade 1.9.2-p136 1.9.2-p180

To find out if there is a more recent stable version of a ruby implementation for you to upgrade to, you can run

$ rvm list known

You can compare this the ruby versions installed on your system

$ rvm list rubies
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.