Skip to content

Instantly share code, notes, and snippets.

@hunner
Created July 11, 2011 21:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hunner/1076824 to your computer and use it in GitHub Desktop.
Save hunner/1076824 to your computer and use it in GitHub Desktop.
RVM on OS X for zsh
# Install git via macports or homebrew...
bash < <(curl -s https://rvm.beginrescueend.com/install/rvm)
echo '[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # Load RVM function' >> .zshrc
source .zshrc
rvm notes # This will tell you about the following commands
rvm install 1.8.7
rvm system
rvm gemset export system.gems
rvm 1.8.7
rvm gemset import system
rvm --default 1.8.7
ruby --version
gem list
# For more info see https://rvm.beginrescueend.com/rvm/install/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment