Created
February 19, 2014 06:47
-
-
Save carlware/9087209 to your computer and use it in GitHub Desktop.
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
1. install rvm stable | |
\curl -sSL https://get.rvm.io | bash -s stable --ruby | |
2. edit $HOME/.bash_profile | |
[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" | |
3. source | |
source ~/.rvm/scripts/rvm | |
commands | |
rvm list rubies | |
rvm install 1.9.2 | |
rvm use RUBY_VERSION | |
rvm gemset create myproject | |
rvm gemset use myproject | |
rvm gemset delete myproject | |
rvm gemset empty myproject | |
rvm getset list | |
rvm gemdir |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment