Created
April 21, 2013 12:11
-
-
Save Gronghon/5429392 to your computer and use it in GitHub Desktop.
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
# http://www.vxnick.com/blog/2012/04/setting-up-rbenv-globally/ | |
#### begin rbenv configuration #### | |
## Remove these lines if you wish to use your own | |
## clone of rbenv (with your own rubies) | |
export RBENV_ROOT=/usr/local/rbenv | |
export PATH="$RBENV_ROOT/bin:$PATH" | |
eval "$(rbenv init -)" | |
# Allow local Gem management | |
export GEM_HOME="$HOME/.gem" | |
export GEM_PATH="$HOME/.gem" | |
export PATH="$HOME/.gem/bin:$PATH" | |
#### end rbenv configuration #### |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment