Skip to content

Instantly share code, notes, and snippets.

@ckunte
Created June 14, 2013 01:51
Show Gist options
  • Save ckunte/5778877 to your computer and use it in GitHub Desktop.
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.
#!/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