Skip to content

Instantly share code, notes, and snippets.

@klaaspieter
Last active August 29, 2015 14:05
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 klaaspieter/ffcfb2f80fcaaabc1c87 to your computer and use it in GitHub Desktop.
Save klaaspieter/ffcfb2f80fcaaabc1c87 to your computer and use it in GitHub Desktop.
Keeping forgetting to remove those pesky `fdescribes` from your Specta files? Add this to .git/hooks/pre-commit
if ! git diff-index --cached --name-only --exit-code -G "fdescribe" $against
then
echo "\nRemove occurences of fdescribe from listed files."
exit 1
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment