Signed-off-by: Felipe Contreras <felipe.contreras@xxxxxxxxx> --- contrib/related/git-related | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/contrib/related/git-related b/contrib/related/git-related index cf6818e..4e9b916 100755 --- a/contrib/related/git-related +++ b/contrib/related/git-related @@ -212,7 +212,12 @@ commits.items.values.each do |commit| end end -persons.each do |person, roles| +# sort by number of participations +count_sort = lambda do |a, b| + b[1].values.reduce(:+) <=> a[1].values.reduce(:+) +end + +persons.sort(&count_sort).each do |person, roles| roles = roles.map do |role, count| percent = count.to_f * 100 / commits.size next if percent < $min_percent -- 1.8.2.1 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html