Class: AuthorsCommitStats

Inherits:
CommitStats show all
Includes:
StatsHash
Defined in:
lib/gitstats/stats/commit/author.rb

Instance Attribute Summary

Attributes inherited from CommitStats

#commits, #files, #files_added, #files_deleted, #first_commit, #last_commit, #lines, #lines_added, #lines_deleted

Instance Method Summary collapse

Methods included from StatsHash

#each_sorted, #method_missing

Methods inherited from CommitStats

#days

Constructor Details

#initializeAuthorsCommitStats

Returns a new instance of AuthorsCommitStats.



4
5
6
7
# File 'lib/gitstats/stats/commit/author.rb', line 4

def initialize
  super
  @hash = Hash.new
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class StatsHash

Instance Method Details

#update(commit) ⇒ Object



9
10
11
12
13
14
15
# File 'lib/gitstats/stats/commit/author.rb', line 9

def update(commit)
  super(commit)

  author = commit[:author]
  @hash[author] ||= CommitStats.new
  @hash[author].update(commit)
end