Skip to content

Instantly share code, notes, and snippets.

@SinisterLight
Last active December 17, 2015 18:49
Show Gist options
  • Save SinisterLight/5655901 to your computer and use it in GitHub Desktop.
Save SinisterLight/5655901 to your computer and use it in GitHub Desktop.
Install rbenv | moving from rvm to rbenv
rvm implode
brew update
brew install rbenv
brew install ruby-build
rbenv init -
echo 'eval "$(rbenv init -)"' >> ~/.zshrc
rbenv install 1.9.3-p429
rbenv rehash
brew install rbenv-gemset
rbenv gemset create 1.9.3-p429 global
echo global > ~/.rbenv-gemsets
gem install bundler
rbenv rehash
cd my-project
echo "my-project-gemset global" > .rbenv-gemsets
bundle install
rbenv rehash
For more info + quick startup guide : https://gist.github.com/MicahElliott/2407918
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment