1
0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-27 02:33:39 +08:00
ohmyzsh/plugins/bundler/bundler.plugin.zsh

58 lines
1.4 KiB
Bash
Raw Normal View History

2011-02-16 03:27:25 +08:00
alias be="bundle exec"
2011-07-14 05:41:36 +08:00
alias bl="bundle list"
alias bp="bundle package"
alias bo="bundle open"
2011-08-31 19:51:10 +08:00
alias bu="bundle update"
2011-07-14 05:41:09 +08:00
2013-09-06 00:22:46 +08: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-14 05:41:09 +08:00
# The following is based on https://github.com/gma/bundler-exec
2013-10-26 00:01:28 +08:00
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-14 05:41:09 +08:00
# Remove $UNBUNDLED_COMMANDS from the bundled_commands list
for cmd in $UNBUNDLED_COMMANDS; do
bundled_commands=(${bundled_commands#$cmd});
done
2011-07-14 05:41:09 +08:00
## Functions
_bundler-installed() {
which bundle > /dev/null 2>&1
}
_within-bundled-project() {
local check_dir=$PWD
while [ $check_dir != "/" ]; do
2011-07-14 05:41:09 +08: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-15 00:34:18 +08:00
bundle exec $@
2011-07-14 05:41:09 +08:00
else
2011-07-15 00:34:18 +08:00
$@
2011-07-14 05:41:09 +08:00
fi
}
## Main program
for cmd in $bundled_commands; do
2012-12-24 17:27:23 +08: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-14 05:41:09 +08:00
done
2013-09-06 00:22:46 +08:00