Created
June 14, 2013 01:51
-
-
Save ckunte/5778877 to your computer and use it in GitHub Desktop.
This lets me install ruby 1.9.3, needed to run gollum on my ubuntu 10.04.4 LTS localhost.
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
#!/usr/bin/env sh | |
echo "Installing ruby 1.9.3 on ubuntu.." | |
sudo apt-get update | |
sudo apt-get install curl | |
\curl -L https://get.rvm.io | bash -s stable | |
source ~/.rvm/scripts/rvm | |
rvm requirements | |
rvm install 1.9.3 | |
rvm use 1.9.3 --default |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment