Last active
August 29, 2015 14:22
-
-
Save pokka/1d64c9c93cf35b5e4f87 to your computer and use it in GitHub Desktop.
bundle exec short hand
This file contains 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
function be () { | |
bundle exec $@ | |
} | |
function ber () { | |
bundle exec rake $@ | |
} | |
function bes () { | |
bundle exec rake spec $@ | |
} | |
function bess () { | |
bundle exec rake spec SPEC=$@ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment