Skip to content

Instantly share code, notes, and snippets.

@Fitzsimmons
Created October 14, 2011 20:34
Show Gist options
  • Save Fitzsimmons/1288255 to your computer and use it in GitHub Desktop.
Save Fitzsimmons/1288255 to your computer and use it in GitHub Desktop.
bundle exec helper for zsh
# Customize to your needs...
be() {
if [[ -a Gemfile ]]; then
bundle exec $*
else
command $*
fi
}
alias rake='be rake'
alias ruby='be ruby'
alias spork='be spork'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment