caelum-git-reports 0.2.2 → 0.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/bin/git-report.rb +5 -5
- data/git-reports.gemspec +1 -1
- metadata +1 -1
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.3
|
data/bin/git-report.rb
CHANGED
|
@@ -40,10 +40,10 @@ if (workdir and days > 0)
|
|
|
40
40
|
repository_html.puts HtmlReport.new(reporter.repository_stats, "Statistics for repositories", days).generate
|
|
41
41
|
repository_html.close
|
|
42
42
|
|
|
43
|
-
#
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
43
|
+
# Committer stats
|
|
44
|
+
committer_html = File.new("committers-#{now}-#{days}.html", "w")
|
|
45
|
+
committer_html.puts HtmlReport.new(reporter.commiter_stats, "Statistics for committers", days).generate
|
|
46
|
+
committer_html.close
|
|
47
47
|
|
|
48
48
|
# Commit summary
|
|
49
49
|
summary_html = File.new("summary-#{now}-#{days}.html", "w")
|
|
@@ -54,5 +54,5 @@ else
|
|
|
54
54
|
puts "Usage:"
|
|
55
55
|
puts "git-report.rb <path to repositories> <number of days to look back>"
|
|
56
56
|
puts "git-report.rb <path to repositories> <number of days to look back> <number of commits in summary>"
|
|
57
|
-
puts "git-report.rb <path to repositories> <number of days to look back> <number of commits in summary> <yaml file for
|
|
57
|
+
puts "git-report.rb <path to repositories> <number of days to look back> <number of commits in summary> <yaml file for committer name translation>"
|
|
58
58
|
end
|
data/git-reports.gemspec
CHANGED