From 60c0c1e6ccad41190dfe1f7dbd47a7d1974427d0 Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Fri, 10 Aug 2018 16:22:56 +0200 Subject: Update readme Update configuration summary --- tools/gen_authors.rb | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100755 tools/gen_authors.rb (limited to 'tools/gen_authors.rb') diff --git a/tools/gen_authors.rb b/tools/gen_authors.rb deleted file mode 100755 index 96f2679..0000000 --- a/tools/gen_authors.rb +++ /dev/null @@ -1,18 +0,0 @@ -#!/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 -- cgit v1.2.1