2012-02-01 04:37:51 +00:00
|
|
|
#
|
|
|
|
# Configures Ruby gem installation and loads rvm/rbenv.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
|
|
|
|
2011-08-28 00:37:54 +00:00
|
|
|
# Install local gems according to Mac OS X conventions.
|
|
|
|
if [[ "$OSTYPE" == darwin* ]]; then
|
2012-02-04 05:08:27 +00:00
|
|
|
export GEM_HOME=$HOME/Library/Ruby/Gems/1.8
|
2011-12-28 21:33:44 +00:00
|
|
|
path=("$GEM_HOME/bin" $path)
|
2011-08-28 00:37:54 +00:00
|
|
|
|
2011-12-28 21:33:44 +00:00
|
|
|
# Set environment variables for launchd processes.
|
2011-12-28 21:35:41 +00:00
|
|
|
launchctl setenv GEM_HOME "$GEM_HOME" &!
|
2011-08-28 00:37:54 +00:00
|
|
|
fi
|
2010-06-03 19:03:26 +00:00
|
|
|
|
2011-08-31 03:16:15 +00:00
|
|
|
# Loads RVM into the shell session.
|
|
|
|
if [[ -s "$HOME/.rvm/scripts/rvm" ]]; then
|
2012-02-09 17:37:42 +00:00
|
|
|
# Let RVM manage the GEM_HOME.
|
|
|
|
unset GEM_HOME
|
|
|
|
|
2011-08-31 03:16:15 +00:00
|
|
|
# Auto adding variable-stored paths to ~ list conflicts with RVM.
|
2011-10-11 02:16:06 +00:00
|
|
|
unsetopt AUTO_NAME_DIRS
|
2011-08-31 03:16:15 +00:00
|
|
|
|
|
|
|
# Source RVM.
|
|
|
|
source "$HOME/.rvm/scripts/rvm"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Loads rbenv into the shell session.
|
|
|
|
if [[ -s "$HOME/.rbenv/bin/rbenv" ]]; then
|
2012-02-09 17:37:42 +00:00
|
|
|
# Let rbenv manage the GEM_HOME.
|
|
|
|
unset GEM_HOME
|
|
|
|
|
2011-08-31 03:16:15 +00:00
|
|
|
path=("$HOME/.rbenv/bin" $path)
|
2012-02-03 22:49:40 +00:00
|
|
|
eval "$(rbenv init - zsh)"
|
2011-08-31 03:16:15 +00:00
|
|
|
fi
|
|
|
|
|