Improve AUTHORS.md formatting

This commit is contained in:
Feross Aboukhadijeh 2016-08-05 22:44:11 -07:00
parent bd3a96716c
commit cb35e58114
2 changed files with 34 additions and 34 deletions

View File

@ -2,34 +2,34 @@
#### Ordered by first contribution. #### Ordered by first contribution.
- Feross Aboukhadijeh <feross@feross.org> - Feross Aboukhadijeh (feross@feross.org)
- Mathias Buus <mathiasbuus@gmail.com> - Mathias Buus (mathiasbuus@gmail.com)
- thermatk <thermatk@thermatk.com> - thermatk (thermatk@thermatk.com)
- fisch0920 <fisch0920@gmail.com> - fisch0920 (fisch0920@gmail.com)
- Aliaksei Sapach <aliaksei.dreamsonic@gmail.com> - Aliaksei Sapach (aliaksei.dreamsonic@gmail.com)
- John Hiesey <john@hiesey.com> - John Hiesey (john@hiesey.com)
- hicom150 <necrox666@gmail.com> - hicom150 (necrox666@gmail.com)
- Theadd <pantallazo@gmail.com> - Theadd (pantallazo@gmail.com)
- Astro <astro@spaceboyz.net> - Astro (astro@spaceboyz.net)
- Anthony MOI <xn1t0x@gmail.com> - Anthony MOI (xn1t0x@gmail.com)
- Max Ogden <max@maxogden.com> - Max Ogden (max@maxogden.com)
- Sidd Sridharan <sidd@sidd.com> - Sidd Sridharan (sidd@sidd.com)
- Nick Rafter <nicholas.rafter@gmail.com> - Nick Rafter (nicholas.rafter@gmail.com)
- zckevin <zckevinzc@gmail.com> - zckevin (zckevinzc@gmail.com)
- Michael Williams <dinosaur@riseup.net> - Michael Williams (dinosaur@riseup.net)
- Garret Buell <gmbuell@gmail.com> - Garret Buell (gmbuell@gmail.com)
- Linus Unnebäck <linus@folkdatorn.se> - Linus Unnebäck (linus@folkdatorn.se)
- Aram Drevekenin <aram@onetwotrade.com> - Aram Drevekenin (aram@onetwotrade.com)
- Gustavo Rodrigues <qgustavor@gmail.com> - Gustavo Rodrigues (qgustavor@gmail.com)
- Alex <alxmorais8@msn.com> - Alex (alxmorais8@msn.com)
- Harsh Vakharia <harshjv@users.noreply.github.com> - Harsh Vakharia (harshjv@users.noreply.github.com)
- Yoann Ciabaud <yoann@sonora.io> - Yoann Ciabaud (yoann@sonora.io)
- Diego Rodríguez Baquero <DiegoRBaquero@users.noreply.github.com> - Diego Rodríguez Baquero (DiegoRBaquero@users.noreply.github.com)
- Autarc <autarc@gmail.com> - Autarc (autarc@gmail.com)
- Kirill Fomichev <fanatid@ya.ru> - Kirill Fomichev (fanatid@ya.ru)
- Matt Bell <mappum@gmail.com> - Matt Bell (mappum@gmail.com)
- Philipp Henkel <henkel@users.noreply.github.com> - Philipp Henkel (henkel@users.noreply.github.com)
- jakefb <jacobafb@gmail.com> - jakefb (jacobafb@gmail.com)
- Nick Frost <nickfrostatx@gmail.com> - Nick Frost (nickfrostatx@gmail.com)
#### Generated by bin/update-authors.sh. #### Generated by bin/update-authors.sh.

View File

@ -1,16 +1,16 @@
#!/bin/sh #!/bin/sh
# Update AUTHORS.md based on git history. # Update AUTHORS.md based on git history.
git log --reverse --format='%aN <%aE>' | perl -we ' git log --reverse --format='%aN (%aE)' | perl -we '
BEGIN { BEGIN {
%seen = (), @authors = (); %seen = (), @authors = ();
} }
while (<>) { while (<>) {
next if $seen{$_}; next if $seen{$_};
next if /<support\@greenkeeper.io>/; next if /(support\@greenkeeper.io)/;
next if /<yoann\@atacma.agency>/; next if /(yoann\@atacma.agency)/;
next if /<yciabaud\@users.noreply.github.com>/; next if /(yciabaud\@users.noreply.github.com)/;
next if /<diegorbaquero\@gmail.com>/; next if /(diegorbaquero\@gmail.com)/;
$seen{$_} = push @authors, "- ", $_; $seen{$_} = push @authors, "- ", $_;
} }
END { END {