From ff3b715d312af96a03f33af46e628f6d2b492c57 Mon Sep 17 00:00:00 2001 From: Camden Narzt Date: Thu, 21 Feb 2019 09:42:35 -0700 Subject: [PATCH] Update contributors [ci:skip] --- CONTRIBUTORS | 1 + build/misc.rb | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTORS b/CONTRIBUTORS index cd467facd..c50c4f573 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -88,6 +88,7 @@ Richard Michael Rob Paisley Robin Bowes Romain Tartière +ROMB Ruslan Ermilov (NGINX Inc) Ryan Schwartz Ryo Onodera diff --git a/build/misc.rb b/build/misc.rb index fdd243966..83b92f216 100644 --- a/build/misc.rb +++ b/build/misc.rb @@ -143,6 +143,8 @@ def format_paragraph(text) entries.push "Floor Drees (Phusion)" entries.delete "Luuk Hafkamp" entries.push "Luuk Hafkamp (Phusion)" + entries.delete "Luuk Hendriks" + entries.push "Luuk Hendriks (Phusion)" # Non-employee contributors entries.push "Ruslan Ermilov (NGINX Inc)" @@ -152,7 +154,7 @@ def format_paragraph(text) entries.push "Yichun Zhang" File.open("CONTRIBUTORS", "w") do |f| - f.puts(entries.sort{ |a, b| a.downcase <=> b.downcase }.join("\n")) + f.puts(entries.sort{ |a, b| a.downcase <=> b.downcase }.uniq.join("\n")) end puts "Updated CONTRIBUTORS" end