Last active
December 17, 2015 18:49
-
-
Save SinisterLight/5655901 to your computer and use it in GitHub Desktop.
Install rbenv | moving from rvm to rbenv
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
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