Added support for package manager installed rbenv.
This commit is contained in:
parent
58874461bb
commit
0829f921db
|
@ -12,10 +12,13 @@ if [[ -s "$HOME/.rvm/scripts/rvm" ]]; then
|
||||||
|
|
||||||
# Source RVM.
|
# Source RVM.
|
||||||
source "$HOME/.rvm/scripts/rvm"
|
source "$HOME/.rvm/scripts/rvm"
|
||||||
# Loads rbenv into the shell session.
|
# Loads manually installed rbenv into the shell session.
|
||||||
elif [[ -s "$HOME/.rbenv/bin/rbenv" ]]; then
|
elif [[ -s "$HOME/.rbenv/bin/rbenv" ]]; then
|
||||||
path=("$HOME/.rbenv/bin" $path)
|
path=("$HOME/.rbenv/bin" $path)
|
||||||
eval "$(rbenv init - zsh)"
|
eval "$(rbenv init - zsh)"
|
||||||
|
# Loads package manager installed rbenv into the shell session.
|
||||||
|
elif (( $+commands[rbenv] )); then
|
||||||
|
eval "$(rbenv init - zsh)"
|
||||||
else
|
else
|
||||||
# Install local gems according to Mac OS X conventions.
|
# Install local gems according to Mac OS X conventions.
|
||||||
if [[ "$OSTYPE" == darwin* ]]; then
|
if [[ "$OSTYPE" == darwin* ]]; then
|
||||||
|
|
Loading…
Reference in a new issue