prezto_config/plugins/ruby/init.zsh

38 lines
868 B
Bash
Raw Normal View History

2012-02-01 05:37:51 +01:00
#
# Configures Ruby gem installation and loads rvm/rbenv.
#
# Authors:
# 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
2011-08-31 05:16:15 +02:00
# Loads RVM into the shell session.
if [[ -s "$HOME/.rvm/scripts/rvm" ]]; then
# Let RVM manage the GEM_HOME.
unset GEM_HOME
2011-08-31 05:16:15 +02:00
# Auto adding variable-stored paths to ~ list conflicts with RVM.
unsetopt AUTO_NAME_DIRS
2011-08-31 05:16:15 +02:00
# 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
2011-08-31 05:16:15 +02:00
path=("$HOME/.rbenv/bin" $path)
2012-02-03 23:49:40 +01:00
eval "$(rbenv init - zsh)"
2011-08-31 05:16:15 +02:00
fi