Forked from dodecaphonic/no_prying_when_commiting.sh
Last active
September 2, 2016 02:23
-
-
Save tauil/6117127 to your computer and use it in GitHub Desktop.
No Pry when commiting
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
#!/bin/sh | |
for FILE in `git diff-index --name-status HEAD -- | awk '{print $2}'`; do | |
if [ "echo $FILE | grep .rb" ]; then | |
if [ "grep 'binding.pry|debugger' $FILE" ]; then | |
echo "$FILE: pry or debugger call. Fix it before committing." | |
exit 1 | |
fi | |
fi | |
done | |
exit | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment