Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New contributor guidelines; Add AUTHORS.md #660

Merged
merged 4 commits into from Mar 8, 2016
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file or symbol
Failed to load files and symbols.

Always

Just for now

Add AUTHORS file

give contributors credit!
  • Loading branch information
feross committed Mar 8, 2016
commit f3b66f0af67c938c624202480fd5faa72478969a
@@ -0,0 +1,66 @@
# Authors

#### Ordered by first contribution.

- Feross Aboukhadijeh <feross@feross.org>
- John Hiesey <jhiesey@cs.stanford.edu>
- Brad Berger <brad@bradb.net>
- Matt Buresh <mattburesh@gmail.com>
- cagedwisdom <cagedwisdom@tricorder.org>
- Charles Julian Knight <charles@rabidaudio.com>
- Maurits van Mastrigt <maurits@nerdieworks.nl>
- Shyam S Kumar <shyam.salim.kumar@outlook.com>
- fisch0920 <fisch0920@gmail.com>
- iShift <shift.rus@gmail.com>
- Bob Ren <bob@codecademy.com>
- gtuk <gtuk@hush.ai>
- thammin <thammin@live.co.uk>
- Valérian Galliat <val@codejam.info>
- opfl <openthefrog@gmail.com>
- Chris <abody.97@gmail.com>
- Astro <astro@spaceboyz.net>
- Sindre Sorhus <sindresorhus@gmail.com>
- Josh Duff <me@JoshDuff.com>
- Anthony MOI <anthony@totems.co>
- Joseph Dykstra <josephdykstra@gmail.com>
- mathiasvr <mathiasvr@gmail.com>
- grunjol <grunjol@argenteam.net>
- Liam Curry <liam@curry.name>
- Francisco Pinzon <hello@pacho.me>
- Jake Fulton Buckle <jacobafb@gmail.com>
- alexeisavca <savca.alexei@gmail.com>
- Olivier Lalonde <olalonde@gmail.com>
- Johnny Tong <mailbox@johnnytong.com>
- Mark Vayngrib <mark.vayngrib@lablz.com>
- Tristan Davies <github@tristan.io>
- Eric Wooley <ericwooley@gmail.com>
- Afshin Mehrabani <afshin.meh@gmail.com>
- Josip Janžić <josip.janzic@gmail.com>
- Bigard Florian <florian.bigard@gmail.com>
- OlaviSau <olavisau@gmail.com>
- Simba Zhang <solderzzc@gmail.com>
- Gilles De Mey <gilles.de.mey@gmail.com>
- Linus Unnebäck <linus@folkdatorn.se>
- André Stein <stivekx@gmail.com>
- Joseph Frazier <joseph@onsip.com>
- Yousef Amar <yousefamar@gmail.com>
- Lucas Pelegrino <lucas.wxp@gmail.com>
- Yoann Ciabaud <yoann@atacma.agency>
- Joseph Frazier <1212jtraceur@gmail.com>
- Ivan Vučica <ivan@vucica.net>
- ReadmeCritic <frankensteinbot@gmail.com>
- vinz243 <vinz243@gmail.com>
- Diego Rodríguez <diegorbaquero@gmail.com>
- Aram Drevekenin <grimsniffer@gmail.com>
- andreapaiola <andrea.paiola@gmail.com>
- Hrvoje Šimić <me@shime.io>
- Romain Beaumont <romain.rom1@gmail.com>
- Zander Mackie <zander@skilledup.com>
- Wim <wim@sitebase.be>
- William Blankenship <william.jblankenship@gmail.com>
- James Halliday <mail@substack.net>
- Bazyli Brzóska <bazyli.brzoska@gmail.com>
- Yoann Ciabaud <y.ciabaud@free.fr>

#### Generated by tools/authors.sh.

@@ -0,0 +1,21 @@
#!/bin/sh
# Update AUTHORS.md based on git history.

git log --reverse --format='%aN <%aE>' | perl -we '
BEGIN {
%seen = (), @authors = ();
}
while (<>) {
next if $seen{$_};
next if /<support\@greenkeeper.io>/;
next if /<badger\@gitter.im>/;
next if /<.*\@users.noreply.github.com>/;
$seen{$_} = push @authors, "- ", $_;
}
END {
print "# Authors\n\n";
print "#### Ordered by first contribution.\n\n";
print @authors, "\n";
print "#### Generated by tools/authors.sh.\n\n";
}
' > AUTHORS.md
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.