Skip to content

Instantly share code, notes, and snippets.

@mjmsmith
Forked from jvatic/pre-commit.rb
Created February 11, 2013 03:56
Show Gist options
  • Save mjmsmith/4752468 to your computer and use it in GitHub Desktop.
Save mjmsmith/4752468 to your computer and use it in GitHub Desktop.
#!/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