Do not define $GEM_HOME
Defining it breaks gems for all users who neither use RVM nor rbenv, but have a different default Ruby version nonetheless. Signed-off-by: Sorin Ionescu <sorin.ionescu@gmail.com>
This commit is contained in:
parent
959887013d
commit
8ee6634c93
|
@ -23,14 +23,9 @@ elif [[ -s "$HOME/.rbenv/bin/rbenv" ]]; then
|
||||||
elif (( $+commands[rbenv] )); then
|
elif (( $+commands[rbenv] )); then
|
||||||
eval "$(rbenv init - --no-rehash zsh)"
|
eval "$(rbenv init - --no-rehash zsh)"
|
||||||
|
|
||||||
# Install local gems according to operating system conventions.
|
# Prepend local gems bin directories to PATH.
|
||||||
else
|
else
|
||||||
if [[ "$OSTYPE" == darwin* ]]; then
|
path=($HOME/.gem/ruby/*/bin(N) $path)
|
||||||
export GEM_HOME="$HOME/Library/Ruby/Gems/1.8"
|
|
||||||
path=("$GEM_HOME/bin" $path)
|
|
||||||
else
|
|
||||||
path=($HOME/.gem/ruby/*/bin(N) $path)
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Return if requirements are not found.
|
# Return if requirements are not found.
|
||||||
|
|
Loading…
Reference in a new issue