Class: GitHooks::PreCommit::Rspec

Inherits:
Object
  • Object
show all
Defined in:
lib/git_hooks/pre_commit/rspec.rb

Instance Method Summary collapse

Instance Method Details

#validateObject



4
5
6
7
8
# File 'lib/git_hooks/pre_commit/rspec.rb', line 4

def validate
  return if system('bundle exec rspec --format=progress')

  abort 'Prevented broken commit'
end