2012-02-01 04:37:51 +00:00
|
|
|
#
|
2012-06-13 01:02:14 +00:00
|
|
|
# Configures Ruby local gem installation, loads version managers, and defines
|
|
|
|
# aliases.
|
2012-02-01 04:37:51 +00:00
|
|
|
#
|
2012-06-13 01:02:14 +00:00
|
|
|
# Authors: Sorin Ionescu <sorin.ionescu@gmail.com>
|
2012-02-01 04:37:51 +00:00
|
|
|
#
|
|
|
|
|
2012-07-23 19:00:44 +00:00
|
|
|
# Return if requirements are not found.
|
|
|
|
if (( ! $+commands[ruby] )); then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2012-05-20 20:12:56 +00:00
|
|
|
# Load RVM into the shell session.
|
2011-08-31 03:16:15 +00:00
|
|
|
if [[ -s "$HOME/.rvm/scripts/rvm" ]]; then
|
2012-05-20 20:12:56 +00:00
|
|
|
# Unset AUTO_NAME_DIRS since 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-05-20 20:12:56 +00:00
|
|
|
|
|
|
|
# Load 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-05-20 20:12:56 +00:00
|
|
|
|
|
|
|
# Load package manager installed rbenv into the shell session.
|
2012-02-10 03:31:04 +00:00
|
|
|
elif (( $+commands[rbenv] )); then
|
|
|
|
eval "$(rbenv init - zsh)"
|
2012-05-20 20:12:56 +00:00
|
|
|
|
|
|
|
# Install local gems according to operating system conventions.
|
2012-02-09 19:17:53 +00:00
|
|
|
else
|
|
|
|
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-08-04 18:48:32 +00:00
|
|
|
#
|
2012-02-09 19:28:47 +00:00
|
|
|
# Aliases
|
2012-08-04 18:48:32 +00:00
|
|
|
#
|
2012-06-13 01:02:14 +00:00
|
|
|
|
2012-08-15 01:10:12 +00:00
|
|
|
# General
|
|
|
|
alias rb='ruby'
|
|
|
|
|
2012-06-13 01:02:14 +00:00
|
|
|
# Bundler
|
2012-07-23 19:00:44 +00:00
|
|
|
if (( $+commands[bundle] )); then
|
2012-08-15 01:10:12 +00:00
|
|
|
alias rbb='bundle'
|
|
|
|
alias rbbe='rbb exec'
|
|
|
|
alias rbbi='rbb install --path vendor/bundle'
|
|
|
|
alias rbbl='rbb list'
|
|
|
|
alias rbbo='rbb open'
|
|
|
|
alias rbbp='rbb package'
|
|
|
|
alias rbbu='rbb update'
|
|
|
|
alias rbbI='rbbi \
|
|
|
|
&& rbb package \
|
2012-07-23 19:00:44 +00:00
|
|
|
&& print .bundle >>! .gitignore \
|
|
|
|
&& print vendor/bundle >>! .gitignore \
|
|
|
|
&& print vendor/cache >>! .gitignore'
|
|
|
|
fi
|
2012-02-10 03:20:36 +00:00
|
|
|
|