This repository has been archived on 2022-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
prezto/modules/ruby/init.zsh

62 lines
1.4 KiB
Bash
Raw Normal View History

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-07-23 15:00:44 -04:00
# Return if requirements are not found.
if (( ! $+commands[ruby] )); then
return 1
fi
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.
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.
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.
elif (( $+commands[rbenv] )); then
eval "$(rbenv init - zsh)"
2012-05-20 16:12:56 -04: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-30 23:16:15 -04:00
fi
2012-08-04 14:48:32 -04: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'
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 15:00:44 -04:00
&& print .bundle >>! .gitignore \
&& print vendor/bundle >>! .gitignore \
&& print vendor/cache >>! .gitignore'
fi