Upgrading RVM
RVM supports few ways of upgrading itself.
To upgrade to the most stable version
$ rvm get stable
installs the stable version (latest + fixes).
To upgrade to the most recent release version
$ rvm get latest
installs the latest released version.
Upgrading to the latest repository source version (the most bugfixes)
$ rvm get head
obtains the latest RVM repository version.
Upgrading to someones else forked branch
$ rvm get branch [owner/][branch]
obtains the given branch possibly from the given owner, examples:
$ rvm get branch shoes # shoes branch from wayneeseguin rvm repository $ rvm get branch mpapis/ # master branch from mpapis rvm repository $ rvm get branch mpapis/shoes # shoes branch from mpapis rvm repository
After updating RVM, you may be also interested in Upgrading Rubies.