bundler.plugin.zsh 1.37 KB
Newer Older
1
alias be="bundle exec"
Hakan Ensari's avatar
Hakan Ensari committed
2
alias bl="bundle list"
3
alias bp="bundle package"
4
alias bo="bundle open"
Hakan Ensari's avatar
Hakan Ensari committed
5
alias bu="bundle update"
6

7
8
9
10
11
12
13
14
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'"

15
# The following is based on https://github.com/gma/bundler-exec
16
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)
17

18
19
20
21
22
# Remove $UNBUNDLED_COMMANDS from the bundled_commands list
for cmd in $UNBUNDLED_COMMANDS; do
  bundled_commands=(${bundled_commands#$cmd});
done

23
24
25
26
27
28
29
30
## Functions

_bundler-installed() {
  which bundle > /dev/null 2>&1
}

_within-bundled-project() {
  local check_dir=$PWD
31
  while [ $check_dir != "/" ]; do
32
33
34
35
36
37
38
39
    [ -f "$check_dir/Gemfile" ] && return
    check_dir="$(dirname $check_dir)"
  done
  false
}

_run-with-bundler() {
  if _bundler-installed && _within-bundled-project; then
Hakan Ensari's avatar
Hakan Ensari committed
40
    bundle exec $@
41
  else
Hakan Ensari's avatar
Hakan Ensari committed
42
    $@
43
44
45
46
47
  fi
}

## Main program
for cmd in $bundled_commands; do
thisiskun's avatar
thisiskun committed
48
  eval "function unbundled_$cmd () { $cmd \$@ }"
49
50
51
52
  eval "function bundled_$cmd () { _run-with-bundler $cmd \$@}"
  alias $cmd=bundled_$cmd

  if which _$cmd > /dev/null 2>&1; then
53
        compdef _$cmd bundled_$cmd=$cmd
54
  fi
55
done
56