Skip to content

Instantly share code, notes, and snippets.

@thinkclay
Created April 7, 2014 19:44
Show Gist options
  • Save thinkclay/10038490 to your computer and use it in GitHub Desktop.
Save thinkclay/10038490 to your computer and use it in GitHub Desktop.
Up and running with Ubuntu and Rails
apt-get update
apt-get upgrade
apt-get install gcc build-essential git-core mongodb
git clone https://github.com/sstephenson/rbenv.git ~/.rbenv
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_profile
echo 'eval "$(rbenv init -)"' >> ~/.bash_profile
. ~/.bash_profile
git clone https://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build
rbenv install -l
rbenv install 2.1.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment