Created
November 14, 2011 06:16
-
-
Save burtlo/1363370 to your computer and use it in GitHub Desktop.
Bundle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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