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-31 03:16:15 +00:00
|
|
|
# Loads RVM into the shell session.
|
|
|
|
if [[ -s "$HOME/.rvm/scripts/rvm" ]]; then
|
|
|
|
# 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"
|
2012-02-10 03:31:04 +00:00
|
|
|
# Loads manually installed rbenv into the shell session.
|
2012-02-09 19:17:53 +00:00
|
|
|
elif [[ -s "$HOME/.rbenv/bin/rbenv" ]]; then
|
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)"
|
2012-02-10 03:31:04 +00:00
|
|
|
# Loads package manager installed rbenv into the shell session.
|
|
|
|
elif (( $+commands[rbenv] )); then
|
|
|
|
eval "$(rbenv init - zsh)"
|
2012-02-09 19:17:53 +00:00
|
|
|
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)
|
|
|
|
fi
|
2011-08-31 03:16:15 +00:00
|
|
|
fi
|
|
|
|
|
2012-02-09 19:28:47 +00:00
|
|
|
# Aliases
|
|
|
|
alias b='bundle'
|
|
|
|
alias be='b exec'
|
|
|
|
alias bi='b install --path vendor/bundle'
|
|
|
|
alias bl='b list'
|
|
|
|
alias bo='b open'
|
|
|
|
alias bp='b package'
|
|
|
|
alias bu='b update'
|
2012-02-10 03:20:36 +00:00
|
|
|
alias bI='bi \
|
|
|
|
&& b package \
|
|
|
|
&& print .bundle >>! .gitignore \
|
|
|
|
&& print vendor/bundle >>! .gitignore \
|
|
|
|
&& print vendor/cache >>! .gitignore'
|
|
|
|
|