This repository has been archived on 2022-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
prezto/plugins/ruby/init.zsh

38 lines
868 B
Bash
Raw Normal View History

2012-01-31 23:37:51 -05: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-30 23:16:15 -04: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-30 23:16:15 -04:00
# Auto adding variable-stored paths to ~ list conflicts with RVM.
unsetopt AUTO_NAME_DIRS
2011-08-30 23:16:15 -04: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-30 23:16:15 -04:00
path=("$HOME/.rbenv/bin" $path)
2012-02-03 17:49:40 -05:00
eval "$(rbenv init - zsh)"
2011-08-30 23:16:15 -04:00
fi