You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
681 B
26 lines
681 B
# |
|
# Configures Ruby gem installation and loads rvm/rbenv. |
|
# |
|
# Authors: |
|
# Sorin Ionescu <sorin.ionescu@gmail.com> |
|
# |
|
|
|
# Loads RVM into the shell session. |
|
if [[ -s "$HOME/.rvm/scripts/rvm" ]]; then |
|
# Auto adding variable-stored paths to ~ list conflicts with RVM. |
|
unsetopt AUTO_NAME_DIRS |
|
|
|
# Source RVM. |
|
source "$HOME/.rvm/scripts/rvm" |
|
# Loads rbenv into the shell session. |
|
elif [[ -s "$HOME/.rbenv/bin/rbenv" ]]; then |
|
path=("$HOME/.rbenv/bin" $path) |
|
eval "$(rbenv init - zsh)" |
|
else |
|
# Install local gems according to Mac OS X conventions. |
|
if [[ "$OSTYPE" == darwin* ]]; then |
|
export GEM_HOME="$HOME/Library/Ruby/Gems/1.8" |
|
path=("$GEM_HOME/bin" $path) |
|
fi |
|
fi |
|
|
|
|