Created
May 16, 2012 16:00
-
-
Save jvatic/2711625 to your computer and use it in GitHub Desktop.
Git pre-commit hook to block committing Spec files with :focus => true on test blocks
This file contains hidden or 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
#!/usr/bin/env ruby | |
# vim: set syntax=ruby | |
flag = false | |
files = `git diff --cached --name-only --diff-filter=ACM | grep "_spec\.rb$"`.split("\n") | |
files.each do |file| | |
results = `git diff --cached #{file} | grep "^\+[^+]" | grep ":focus => true"`.split("\n").map { |r| r.sub(/^\+[\s\t]*/, '') } | |
if $? == 0 | |
puts file | |
puts results.map { |r| | |
`grep -n "#{r}" #{file}` | |
}.join("") | |
puts "Please remove :focus => true from your tests before committing" | |
flag = true | |
end | |
end | |
exit 1 if flag |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment