Skip to content

Instantly share code, notes, and snippets.

@Gronghon
Created April 21, 2013 12:11
Show Gist options
  • Save Gronghon/5429392 to your computer and use it in GitHub Desktop.
Save Gronghon/5429392 to your computer and use it in GitHub Desktop.
# 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