Last active
August 29, 2015 14:12
-
-
Save A/42d74481fba22269f083 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| # rbenv installation | |
| $ brew update | |
| $ brew upgrade rbenv ruby-build | |
| $ echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_profile | |
| # Zsh note: Modify your ~/.zshrc file instead of ~/.bash_profile. | |
| # Add rbenv init to your shell to enable shims and autocompletion. | |
| $ echo 'eval "$(rbenv init -)"' >> ~/.bash_profile | |
| $ rbenv install 2.2.0 | |
| $ rbenv global 2.2.0 | |
| $ rbenv rehash | |
| $ gem install bundler # and other shit below | |
| $ rbenv rehash # https://github.com/sstephenson/rbenv#rbenv-rehash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment