Skip to content

Instantly share code, notes, and snippets.

@formigarafa
Forked from tapajos/gist:1014902
Created June 8, 2011 17:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save formigarafa/1014910 to your computer and use it in GitHub Desktop.
Save formigarafa/1014910 to your computer and use it in GitHub Desktop.
Rake
function rake {
if [ -e Gemfile ]; then
bundle exec rake $@
else
`which rake` $@
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment