Skip to content

Instantly share code, notes, and snippets.

@johnf
Created August 16, 2012 00:48
Show Gist options
  • Save johnf/3365120 to your computer and use it in GitHub Desktop.
Save johnf/3365120 to your computer and use it in GitHub Desktop.
bundled_commands="cap capify guard rackup rake rspec ruby irb"
## Functions
_bundler-installed() {
which bundle > /dev/null 2>&1
}
_within-bundled-project() {
local check_dir=$PWD
while [ $check_dir != "/" ]; do
[ -f "$check_dir/Gemfile" ] && return
check_dir="$(dirname $check_dir)"
done
false
}
_run-with-bundler() {
if _bundler-installed && _within-bundled-project; then
bundle exec $@
else
$@
fi
}
## Main program
for cmd in $bundled_commands; do
alias $cmd="_run-with-bundler $cmd"
if which _$cmd > /dev/null 2>&1; then
compdef _$cmd bundled_$cmd=$cmd
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment