2012-01-31 23:37:51 -05:00
|
|
|
#
|
2012-06-12 21:02:14 -04:00
|
|
|
# Configures Ruby local gem installation, loads version managers, and defines
|
|
|
|
# aliases.
|
2012-01-31 23:37:51 -05:00
|
|
|
#
|
2012-06-12 21:02:14 -04:00
|
|
|
# Authors: Sorin Ionescu <sorin.ionescu@gmail.com>
|
2012-01-31 23:37:51 -05:00
|
|
|
#
|
|
|
|
|
2012-05-20 16:12:56 -04:00
|
|
|
# Load RVM into the shell session.
|
2011-08-30 23:16:15 -04:00
|
|
|
if [[ -s "$HOME/.rvm/scripts/rvm" ]]; then
|
2012-05-20 16:12:56 -04:00
|
|
|
# Unset AUTO_NAME_DIRS since auto adding variable-stored paths to ~ list
|
|
|
|
# conflicts with RVM.
|
2011-10-10 22:16:06 -04:00
|
|
|
unsetopt AUTO_NAME_DIRS
|
2011-08-30 23:16:15 -04:00
|
|
|
|
|
|
|
# Source RVM.
|
|
|
|
source "$HOME/.rvm/scripts/rvm"
|
2012-05-20 16:12:56 -04:00
|
|
|
|
|
|
|
# Load manually installed rbenv into the shell session.
|
2012-02-09 14:17:53 -05:00
|
|
|
elif [[ -s "$HOME/.rbenv/bin/rbenv" ]]; then
|
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)"
|
2012-05-20 16:12:56 -04:00
|
|
|
|
|
|
|
# Load package manager installed rbenv into the shell session.
|
2012-02-09 22:31:04 -05:00
|
|
|
elif (( $+commands[rbenv] )); then
|
|
|
|
eval "$(rbenv init - zsh)"
|
2012-05-20 16:12:56 -04:00
|
|
|
|
|
|
|
# Install local gems according to operating system conventions.
|
2012-02-09 14:17:53 -05:00
|
|
|
else
|
|
|
|
if [[ "$OSTYPE" == darwin* ]]; then
|
|
|
|
export GEM_HOME="$HOME/Library/Ruby/Gems/1.8"
|
|
|
|
path=("$GEM_HOME/bin" $path)
|
|
|
|
fi
|
2011-08-30 23:16:15 -04:00
|
|
|
fi
|
|
|
|
|
2012-02-09 14:28:47 -05:00
|
|
|
# Aliases
|
2012-06-12 21:02:14 -04:00
|
|
|
|
|
|
|
# Bundler
|
2012-02-09 14:28:47 -05:00
|
|
|
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-09 22:20:36 -05:00
|
|
|
alias bI='bi \
|
|
|
|
&& b package \
|
|
|
|
&& print .bundle >>! .gitignore \
|
|
|
|
&& print vendor/bundle >>! .gitignore \
|
|
|
|
&& print vendor/cache >>! .gitignore'
|
|
|
|
|