1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-03 11:10:28 +00:00
prezto/modules/ruby/init.zsh

70 lines
1.8 KiB
Bash
Raw Normal View History

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-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.
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.
elif [[ -s "$HOME/.rbenv/bin/rbenv" ]]; then
2011-08-31 03:16:15 +00:00
path=("$HOME/.rbenv/bin" $path)
eval "$(rbenv init - --no-rehash zsh)"
2012-05-20 20:12:56 +00:00
# Load package manager installed rbenv into the shell session.
elif (( $+commands[rbenv] )); then
eval "$(rbenv init - --no-rehash zsh)"
2012-05-20 20:12:56 +00:00
2014-02-02 04:37:29 +00:00
# Load package manager installed chruby into the shell session.
elif (( $+commands[chruby-exec] )); then
source "${commands[chruby-exec]:h:h}/share/chruby/chruby.sh"
if zstyle -t ':prezto:module:ruby:chruby' auto-switch; then
source "${commands[chruby-exec]:h:h}/share/chruby/auto.sh"
# If a default Ruby is set, switch to it.
chruby_auto
2014-02-02 04:37:29 +00:00
fi
# Prepend local gems bin directories to PATH.
else
path=($HOME/.gem/ruby/*/bin(N) $path)
2011-08-31 03:16:15 +00:00
fi
# Return if requirements are not found.
if (( ! $+commands[ruby] && ! ( $+commands[rvm] || $+commands[rbenv] ) )); then
return 1
fi
2012-08-04 18:48:32 +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'
2016-02-16 09:47:57 +00:00
alias rbbc='bundle clean'
2013-12-01 00:25:11 +00: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-15 01:10:12 +00:00
alias rbbI='rbbi \
2013-12-01 00:25:11 +00:00
&& bundle package \
2012-07-23 19:00:44 +00:00
&& print .bundle >>! .gitignore \
2013-11-25 21:34:11 +00:00
&& print vendor/assets >>! .gitignore \
2012-07-23 19:00:44 +00:00
&& print vendor/bundle >>! .gitignore \
&& print vendor/cache >>! .gitignore'
fi