rvm get stable
rvm requirements
rvm list known
rvm install x.x.x# do this inside the directory where you want to use this version of Ruby
rvm list# show installed versions of rubyrvm gemset list# show list of available gemsets associated with the current Ruby version
rvm --default use x.x.x
example: rvm --default use 2.1.1
- example:
rvm gemset use globalorrvm gemset use deafult
rvm use ruby-2.0.0@my-app --creategem install rails# install rails into the newly-created gemset
rvm use ruby-2.0.0@my-app --ruby-version...do this inside the rails project folder (you can confirm by looking for the dotfiles that RVM creates in the directory)