Skip to content

Instantly share code, notes, and snippets.

@dodecaphonic
Last active December 18, 2015 21:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save dodecaphonic/5849938 to your computer and use it in GitHub Desktop.
Save dodecaphonic/5849938 to your computer and use it in GitHub Desktop.
git pre-commit hook to avoid committing pry or debugger inspections.
#!/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