Last active
April 11, 2016 17:10
-
-
Save ssmythe/538e220a229b58cc084b1fb03407aad8 to your computer and use it in GitHub Desktop.
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
\curl -sSL https://rvm.io/mpapis.asc | gpg2 --import - | |
\curl -sSL https://get.rvm.io | bash -s stable | |
if [ -f /etc/profile.d/rvm.sh ]; then | |
source /etc/profile.d/rvm.sh | |
else | |
source ~/.profile | |
fi | |
rvm reload | |
rvm --version | |
rvm install 2.3.0 | |
rvm use 2.3.0 | |
rvm --default use 2.3.0 | |
rvm default | |
ruby --version | |
gem update --system | |
gem install bundler --no-ri --no-rdoc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment