From 1d55c51a1604a1d728b4bb474281075ad41045ef Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Fri, 5 Aug 2016 22:41:37 -0700 Subject: [PATCH] Improve AUTHORS.md rendering --- AUTHORS.md | 49 ++++++++++++++++++++++--------------------- bin/update-authors.sh | 10 ++++----- 2 files changed, 30 insertions(+), 29 deletions(-) diff --git a/AUTHORS.md b/AUTHORS.md index 034d67e2..b103fd34 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -2,29 +2,30 @@ #### Ordered by first contribution. -- Feross Aboukhadijeh -- DC -- Nate Goldman -- Chris Morris -- Giuseppe Crinò -- Romain Beaumont -- Dan Flettre -- Liam Gray -- grunjol -- Rémi Jouannet -- Evan Miller -- Alex -- Diego Rodríguez Baquero -- Karlo Luis Martinez Martos -- gabriel -- Rolando Guedes -- Benjamin Tan -- Mathias Rasmussen -- Sergey Bargamon -- Thomas Watson Steen -- anonymlol -- Gediminas Petrikas -- Adam Gotlib -- Rémi Jouannet +- Feross Aboukhadijeh (feross@feross.org) +- DC (dcposch@dcpos.ch) +- Nate Goldman (nate@ngoldman.me) +- Chris Morris (chris@chrismorris.org) +- Giuseppe Crinò (giuscri@gmail.com) +- Romain Beaumont (romain.rom1@gmail.com) +- Dan Flettre (fletd01@yahoo.com) +- Liam Gray (liam.r.gray@gmail.com) +- grunjol (grunjol@users.noreply.github.com) +- Rémi Jouannet (remijouannet@users.noreply.github.com) +- Evan Miller (miller.evan815@gmail.com) +- Alex (alxmorais8@msn.com) +- Diego Rodríguez Baquero (diegorbaquero@gmail.com) +- Karlo Luis Martinez Martos (karlo.luis.m@gmail.com) +- gabriel (furstenheim@gmail.com) +- Rolando Guedes (rolando.guedes@3gnt.net) +- Benjamin Tan (demoneaux@gmail.com) +- Mathias Rasmussen (mathiasvr@gmail.com) +- Sergey Bargamon (sergey@bargamon.ru) +- Thomas Watson Steen (w@tson.dk) +- anonymlol (anonymlol7@gmail.com) +- Gediminas Petrikas (gedas18@gmail.com) +- Adam Gotlib (gotlib.adam+dev@gmail.com) +- Rémi Jouannet (remijouannet@gmail.com) +- Andrea Tupini (tupini07@gmail.com) #### Generated by bin/update-authors.sh. diff --git a/bin/update-authors.sh b/bin/update-authors.sh index a6a6daac..4106eeb9 100755 --- a/bin/update-authors.sh +++ b/bin/update-authors.sh @@ -2,16 +2,16 @@ # Update AUTHORS.md based on git history. -git log --reverse --format='%aN <%aE>' | perl -we ' +git log --reverse --format='%aN (%aE)' | perl -we ' BEGIN { %seen = (), @authors = (); } while (<>) { next if $seen{$_}; - next if //; - next if //; - next if //; - next if //; + next if /(support\@greenkeeper.io)/; + next if /(ungoldman\@gmail.com)/; + next if /(dc\@DCs-MacBook.local)/; + next if /(rolandoguedes\@gmail.com)/; $seen{$_} = push @authors, "- ", $_; } END {