From cb35e5811479bd4dea71a795e9ea19b7a0761750 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Fri, 5 Aug 2016 22:44:11 -0700 Subject: [PATCH] Improve AUTHORS.md formatting --- AUTHORS.md | 58 +++++++++++++++++++++---------------------- bin/update-authors.sh | 10 ++++---- 2 files changed, 34 insertions(+), 34 deletions(-) diff --git a/AUTHORS.md b/AUTHORS.md index 5eeb55c..7dc1be4 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -2,34 +2,34 @@ #### Ordered by first contribution. -- Feross Aboukhadijeh -- Mathias Buus -- thermatk -- fisch0920 -- Aliaksei Sapach -- John Hiesey -- hicom150 -- Theadd -- Astro -- Anthony MOI -- Max Ogden -- Sidd Sridharan -- Nick Rafter -- zckevin -- Michael Williams -- Garret Buell -- Linus Unnebäck -- Aram Drevekenin -- Gustavo Rodrigues -- Alex -- Harsh Vakharia -- Yoann Ciabaud -- Diego Rodríguez Baquero -- Autarc -- Kirill Fomichev -- Matt Bell -- Philipp Henkel -- jakefb -- Nick Frost +- Feross Aboukhadijeh (feross@feross.org) +- Mathias Buus (mathiasbuus@gmail.com) +- thermatk (thermatk@thermatk.com) +- fisch0920 (fisch0920@gmail.com) +- Aliaksei Sapach (aliaksei.dreamsonic@gmail.com) +- John Hiesey (john@hiesey.com) +- hicom150 (necrox666@gmail.com) +- Theadd (pantallazo@gmail.com) +- Astro (astro@spaceboyz.net) +- Anthony MOI (xn1t0x@gmail.com) +- Max Ogden (max@maxogden.com) +- Sidd Sridharan (sidd@sidd.com) +- Nick Rafter (nicholas.rafter@gmail.com) +- zckevin (zckevinzc@gmail.com) +- Michael Williams (dinosaur@riseup.net) +- Garret Buell (gmbuell@gmail.com) +- Linus Unnebäck (linus@folkdatorn.se) +- Aram Drevekenin (aram@onetwotrade.com) +- Gustavo Rodrigues (qgustavor@gmail.com) +- Alex (alxmorais8@msn.com) +- Harsh Vakharia (harshjv@users.noreply.github.com) +- Yoann Ciabaud (yoann@sonora.io) +- Diego Rodríguez Baquero (DiegoRBaquero@users.noreply.github.com) +- Autarc (autarc@gmail.com) +- Kirill Fomichev (fanatid@ya.ru) +- Matt Bell (mappum@gmail.com) +- Philipp Henkel (henkel@users.noreply.github.com) +- jakefb (jacobafb@gmail.com) +- Nick Frost (nickfrostatx@gmail.com) #### Generated by bin/update-authors.sh. diff --git a/bin/update-authors.sh b/bin/update-authors.sh index 08da57b..c7b8dbb 100755 --- a/bin/update-authors.sh +++ b/bin/update-authors.sh @@ -1,16 +1,16 @@ #!/bin/sh # 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 /(yoann\@atacma.agency)/; + next if /(yciabaud\@users.noreply.github.com)/; + next if /(diegorbaquero\@gmail.com)/; $seen{$_} = push @authors, "- ", $_; } END {