Last active
March 10, 2019 04:42
-
-
Save trystant/e97b5e33723ac9a1272b03d786cd7389 to your computer and use it in GitHub Desktop.
rubospec
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
# rubospec function to do rubocop & rspec on files | |
rubospec () { | |
echo "running 'rubocop -a' and 'bundle exec rspec' on: $@" | |
rubocop -a $@ | |
bundle exec rspec $@ | |
} | |
# So it begins... | |
alias rbs='rubospec' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment