Last active
December 18, 2015 21:49
-
-
Save dodecaphonic/5849938 to your computer and use it in GitHub Desktop.
git pre-commit hook to avoid committing pry or debugger inspections.
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