Created
November 5, 2010 03:53
-
-
Save leomao10/663621 to your computer and use it in GitHub Desktop.
common command for rvm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#it is always a good pratice to update and reload RVM itself | |
rvm update --head | |
rvm reload | |
#install different version of ruby | |
rvm install 1.8.7 | |
rvm install 1.9.2 | |
#create different gemsets | |
rvm --create 1.8.7@rails2 | |
rvm --create 1.9.2@rails3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment