Skip to content

Instantly share code, notes, and snippets.

@burtlo
Created November 14, 2011 06:16
Show Gist options
  • Save burtlo/1363370 to your computer and use it in GitHub Desktop.
Save burtlo/1363370 to your computer and use it in GitHub Desktop.
Bundle
# Bundle
# - Install and run bundle even if it is not installed
function bundle {
if type -P bundle > /dev/null
then
"$(type -P bundle)"
else
gem install bundler && bundle
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment