prezto_config/modules/ruby/init.zsh

48 lines
1.2 KiB
Bash
Raw Normal View History

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