aboutsummaryrefslogtreecommitdiff
path: root/tools/gen_authors.rb
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gen_authors.rb')
-rwxr-xr-xtools/gen_authors.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/tools/gen_authors.rb b/tools/gen_authors.rb
new file mode 100755
index 0000000..96f2679
--- /dev/null
+++ b/tools/gen_authors.rb
@@ -0,0 +1,18 @@
+#!/usr/bin/env ruby
+# Generate list of authors from repository commits
+
+log = `hg log --template='{author}'%`
+
+authors = Hash.new(0)
+log.split('%').each do |i|
+ authors[i] += 1
+end
+
+# sort list by descending number of commits
+authors = authors.sort_by {|k, v| v}.reverse
+
+# print out authors
+authors.each do |k, v|
+ #print " #{k} (#{v})\n"
+ print " #{k}\n"
+end