I finally got RVM working and now I would like RVM to install the latest stable ruby version.
In the tutorial I am using they installed ruby 1.9.3 with command :
rvm install 1.9.3
Now I want to know if there is a command to download the latest stable version, or do I have to check latest stable version and download it like that, or else, can I download any old version and run an upgrade?
Normally I would try out everything, but I am working on a new server and I am trying to set it up as clean as I can :)
--latest
I got 2.2.1 and then usingrvm install 2.2.4
I got 2.2.4 which is newest than what I got using--latest
– SET Dec 25 '15 at 21:27rvm use ruby --latest
– Elliot Chance Feb 09 '16 at 23:44