Skip to content

Instantly share code, notes, and snippets.

@benhoskings
Created March 8, 2011 07:57
Show Gist options
  • Save benhoskings/860007 to your computer and use it in GitHub Desktop.
Save benhoskings/860007 to your computer and use it in GitHub Desktop.
# install rvm
bash < <( curl http://rvm.beginrescueend.com/releases/rvm-install-head )
# put this at the end of ~/.bashrc and log out and in
[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm"
# install the latest ruby
rvm install 1.9.2
# make it the default
rvm use 1.9.2 --default
# make sure you're running the latest rubygems
gem update --sytem
# install bundler
gem install bundler
# if you have yaml issues, downgrade bundler
gem uninstall bundler
gem install bundler --version '< 1.0.10'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment