63b666ba86
Gem management without bundler is a pain. Ruby and bundler are inseparable.
36 lines
915 B
Bash
36 lines
915 B
Bash
#
|
|
# Configures Ruby gem installation and loads rvm/rbenv.
|
|
#
|
|
# Authors:
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
#
|
|
|
|
# Loads RVM into the shell session.
|
|
if [[ -s "$HOME/.rvm/scripts/rvm" ]]; then
|
|
# Auto adding variable-stored paths to ~ list conflicts with RVM.
|
|
unsetopt AUTO_NAME_DIRS
|
|
|
|
# Source RVM.
|
|
source "$HOME/.rvm/scripts/rvm"
|
|
# Loads rbenv into the shell session.
|
|
elif [[ -s "$HOME/.rbenv/bin/rbenv" ]]; then
|
|
path=("$HOME/.rbenv/bin" $path)
|
|
eval "$(rbenv init - zsh)"
|
|
else
|
|
# Install local gems according to Mac OS X conventions.
|
|
if [[ "$OSTYPE" == darwin* ]]; then
|
|
export GEM_HOME="$HOME/Library/Ruby/Gems/1.8"
|
|
path=("$GEM_HOME/bin" $path)
|
|
fi
|
|
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 binit="bi && b package && print '\nvendor/ruby' >>! .gitignore"
|