Last active
July 12, 2017 00:40
-
-
Save cfsanderson/b4aad70c323058c309d2da5b0e2ffb70 to your computer and use it in GitHub Desktop.
Install script for RVM - https://rvm.io/rvm/basics
This file contains hidden or 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
# install stable version | |
\curl -sSL https://get.rvm.io | bash -s stable --ruby | |
# loads rvm | |
source ~/.rvm/scripts/rvm | |
# test with | |
type rvm | head -n 1 | |
echo "should output 'rvm is a function'" | |
# shows all available versions of ruby | |
rvm list known | |
# show folder where versions are stored | |
which ruby | |
echo "===== Next Step: Install new SSH keys =====" | |
echo "===== curl -Lks https://goo.gl/gWKCSX | bash =====" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment