oh-my-zsh/plugins/bundler/bundler.plugin.zsh

57 lines
1.4 KiB
Bash
Raw Normal View History

2011-02-15 19:27:25 +00:00
alias be="bundle exec"
2011-07-13 21:41:36 +00:00
alias bl="bundle list"
alias bp="bundle package"
alias bo="bundle open"
2011-08-31 11:51:10 +00:00
alias bu="bundle update"
2011-07-13 21:41:09 +00:00
2013-09-05 16:22:46 +00:00
if [[ "$(uname)" == 'Darwin' ]]
then
local cores_num="$(sysctl hw.ncpu | awk '{print $2}')"
else
local cores_num="$(nproc)"
fi
eval "alias bi='bundle install --jobs=$cores_num'"
2011-07-13 21:41:09 +00:00
# The following is based on https://github.com/gma/bundler-exec
bundled_commands=(annotate berks cap capify cucumber foodcritic foreman guard jekyll kitchen knife middleman nanoc rackup rainbows rake rspec ruby shotgun spec spin spork strainer tailor taps thin thor unicorn unicorn_rails puma)
2011-07-13 21:41:09 +00:00
# Remove $UNBUNDLED_COMMANDS from the bundled_commands list
for cmd in $UNBUNDLED_COMMANDS; do
bundled_commands=(${bundled_commands#$cmd});
done
2011-07-13 21:41:09 +00:00
## Functions
_bundler-installed() {
which bundle > /dev/null 2>&1
}
_within-bundled-project() {
local check_dir=$PWD
while [ $check_dir != "/" ]; do
2011-07-13 21:41:09 +00:00
[ -f "$check_dir/Gemfile" ] && return
check_dir="$(dirname $check_dir)"
done
false
}
_run-with-bundler() {
if _bundler-installed && _within-bundled-project; then
2011-07-14 16:34:18 +00:00
bundle exec $@
2011-07-13 21:41:09 +00:00
else
2011-07-14 16:34:18 +00:00
$@
2011-07-13 21:41:09 +00:00
fi
}
## Main program
for cmd in $bundled_commands; do
2012-12-24 09:27:23 +00:00
eval "function unbundled_$cmd () { $cmd \$@ }"
eval "function bundled_$cmd () { _run-with-bundler $cmd \$@}"
alias $cmd=bundled_$cmd
if which _$cmd > /dev/null 2>&1; then
compdef _$cmd bundled_$cmd=$cmd
fi
2011-07-13 21:41:09 +00:00
done
2013-09-05 16:22:46 +00:00