Skip to content

Commit

Permalink
Simplified rvm, rbenv, and Mac OS X Ruby settings.
Browse files Browse the repository at this point in the history
  • Loading branch information
sorin-ionescu committed Feb 9, 2012
1 parent 42fc29e commit 06b989e
Showing 1 changed file with 10 additions and 18 deletions.
28 changes: 10 additions & 18 deletions plugins/ruby/init.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -5,33 +5,25 @@
# Sorin Ionescu <sorin.ionescu@gmail.com>
#

# 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)

# Set environment variables for launchd processes.
launchctl setenv GEM_HOME "$GEM_HOME" &!
fi

# Loads RVM into the shell session.
if [[ -s "$HOME/.rvm/scripts/rvm" ]]; then
# Let RVM manage the GEM_HOME.
unset GEM_HOME

# Auto adding variable-stored paths to ~ list conflicts with RVM.
unsetopt AUTO_NAME_DIRS

# Source RVM.
source "$HOME/.rvm/scripts/rvm"
fi

# Loads rbenv into the shell session.
if [[ -s "$HOME/.rbenv/bin/rbenv" ]]; then
# Let rbenv manage the GEM_HOME.
unset GEM_HOME

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)

# Set environment variables for launchd processes.
launchctl setenv GEM_HOME "$GEM_HOME" &!
fi
fi

0 comments on commit 06b989e

Please sign in to comment.