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-12-08 15:06:19 -05:00
|
|
|
eval "$(rbenv init - --no-rehash 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
|
2012-12-08 15:06:19 -05:00
|
|
|
eval "$(rbenv init - --no-rehash zsh)"
|
2012-05-20 16:12:56 -04:00
|
|
|
|
2013-08-21 07:31:38 -04:00
|
|
|
# Prepend local gems bin directories to PATH.
|
2012-02-09 14:17:53 -05:00
|
|
|
else
|
2013-08-21 07:31:38 -04:00
|
|
|
path=($HOME/.gem/ruby/*/bin(N) $path)
|
2011-08-30 23:16:15 -04:00
|
|
|
fi
|
|
|
|
|
2012-09-25 12:33:23 -04:00
|
|
|
# Return if requirements are not found.
|
|
|
|
if (( ! $+commands[ruby] && ! ( $+commands[rvm] || $+commands[rbenv] ) )); then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2012-08-04 14:48:32 -04:00
|
|
|
#
|
2012-02-09 14:28:47 -05:00
|
|
|
# Aliases
|
2012-08-04 14:48:32 -04:00
|
|
|
#
|
2012-06-12 21:02:14 -04:00
|
|
|
|
2012-08-14 21:10:12 -04:00
|
|
|
# General
|
|
|
|
alias rb='ruby'
|
|
|
|
|
2012-06-12 21:02:14 -04:00
|
|
|
# Bundler
|
2012-07-23 15:00:44 -04:00
|
|
|
if (( $+commands[bundle] )); then
|
2012-08-14 21:10:12 -04:00
|
|
|
alias rbb='bundle'
|
2013-11-30 19:25:11 -05:00
|
|
|
alias rbbe='bundle exec'
|
|
|
|
alias rbbi='bundle install --path vendor/bundle'
|
|
|
|
alias rbbl='bundle list'
|
|
|
|
alias rbbo='bundle open'
|
|
|
|
alias rbbp='bundle package'
|
|
|
|
alias rbbu='bundle update'
|
2012-08-14 21:10:12 -04:00
|
|
|
alias rbbI='rbbi \
|
2013-11-30 19:25:11 -05:00
|
|
|
&& bundle package \
|
2012-07-23 15:00:44 -04:00
|
|
|
&& print .bundle >>! .gitignore \
|
2013-11-25 16:34:11 -05:00
|
|
|
&& print vendor/assets >>! .gitignore \
|
2012-07-23 15:00:44 -04:00
|
|
|
&& print vendor/bundle >>! .gitignore \
|
|
|
|
&& print vendor/cache >>! .gitignore'
|
|
|
|
fi
|
2013-11-25 16:34:11 -05:00
|
|
|
|