Created
March 9, 2012 01:18
-
-
Save geekygecko/2004465 to your computer and use it in GitHub Desktop.
RVM
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
# 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