Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Update RVM list known

Tags:

ruby

rvm

Is it possible to update the list of known rubies (what you get with rvm list known) without upgrading the entirety of rvm?

like image 453
Andrew Grimm Avatar asked Sep 29 '12 05:09

Andrew Grimm


People also ask

What is the command to update RVM in rails?

First of all, update your RVM installation by running rvm get stable . 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 .


1 Answers

No it is not, some of the version changes require changes in code, you should be good with sticking to stable to keep more stability (if that is your concern):

rvm get stable 

you should be good with sticking to master (as it's stable) to get latest versions:

rvm get master 
like image 119
mpapis Avatar answered Sep 21 '22 13:09

mpapis