caelum-git-reports 0.2.0 → 0.2.1
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/README.rdoc +1 -5
- data/VERSION +1 -1
- data/bin/git-report.rb +5 -1
- data/git-reports.gemspec +1 -1
- metadata +1 -1
data/README.rdoc
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.1
|
data/bin/git-report.rb
CHANGED
|
@@ -50,5 +50,9 @@ if (workdir and days > 0)
|
|
|
50
50
|
summary_html.puts HtmlSummary.new(reporter.repository_summaries, "Summary", days, max_commits).generate
|
|
51
51
|
summary_html.close
|
|
52
52
|
else
|
|
53
|
-
puts "
|
|
53
|
+
puts "caelum-git-reports"
|
|
54
|
+
puts "Usage:"
|
|
55
|
+
puts "git-report.rb <path to repositories> <number of days to look back>"
|
|
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 commiter name translation>"
|
|
54
58
|
end
|
data/git-reports.gemspec
CHANGED