Skip to content

Instantly share code, notes, and snippets.

@geekygecko
Created March 9, 2012 01:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save geekygecko/2004465 to your computer and use it in GitHub Desktop.
Save geekygecko/2004465 to your computer and use it in GitHub Desktop.
RVM
# Update your RVM to the latest statble version.
rvm get latest
# Update your RVM to the most recent version. (most bug fixes)
rvm get head
# Reinstall all your Rails gemset gems
rvm gemset empty project_gem_set && gem install bundler && bundle install
# How to fix Mac issue: `require': no such file to load -- iconv
brew info libiconv
rvm remove ree-1.8.7-2012.02
rvm reinstall ree-1.8.7-2012.02 --with-iconv-dir=/usr/local/Cellar/libiconv/1.14
# Install bundler by default on all gemsets
rvm @global gem install bundler
# Set the system default ruby version
rvm --default use 1.9.3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment