Class: Overcommit::Hook::PostCommit::GitGuilt

Inherits:
Base
  • Object
show all
Defined in:
lib/overcommit/hook/post_commit/git_guilt.rb

Overview

Calculates the change in blame since the last revision.

Instance Attribute Summary

Attributes inherited from Base

#config

Instance Method Summary collapse

Methods inherited from Base

#applicable_files, #description, #enabled?, #executable, #execute, #in_path?, #initialize, #name, #process_hook_return_value, #quiet?, #required?, #run?, #run_and_transform, #skip?

Constructor Details

This class inherits a constructor from Overcommit::Hook::Base

Instance Method Details

#runObject



4
5
6
7
# File 'lib/overcommit/hook/post_commit/git_guilt.rb', line 4

def run
  execute(%w[git guilt HEAD~1 HEAD])
  :pass
end