Skip to content

Instantly share code, notes, and snippets.

@tauil
Forked from dodecaphonic/no_prying_when_commiting.sh
Last active September 2, 2016 02:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tauil/6117127 to your computer and use it in GitHub Desktop.
Save tauil/6117127 to your computer and use it in GitHub Desktop.
No Pry when commiting
#!/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