From 44083b99064110f1e974053449c28474e1068362 Mon Sep 17 00:00:00 2001 From: Thomas Wiecki Date: Fri, 13 Feb 2015 14:13:22 +0100 Subject: [PATCH] DOC Add authors file as well as script to create it. --- AUTHORS | 49 ++++++++++++++++++++++++++++++++++++++ etc/create_authors_file.sh | 3 +++ 2 files changed, 52 insertions(+) create mode 100644 AUTHORS create mode 100755 etc/create_authors_file.sh diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 00000000..74a7a242 --- /dev/null +++ b/AUTHORS @@ -0,0 +1,49 @@ +Eddie Hebert +fawce +Thomas Wiecki +Stephen Diehl +scottsanderson +Scott Sanderson +Richard Frank +Jonathan Kamens +twiecki +Joe Jevnik +Delaney Granizo-Mackenzie +Tobias Brandt +Ben McCann +John Ricklefs +Jenkins T. Quantopian, III +Jeremiah Lowin +jbredeche +Brian Fink +David Edwards +Matti Hanninen +Ryan Day +llllllllll +David Stephens +Tim +Dale Jung +Jamie Kirkpatrick +Jean Bredeche +Wes McKinney +jikamens +Aidan +Colin Alexander +Elektra58 +Jason Kölker +Jeremi Joslin +Luke Schiefelbein +Martin Dengler +Mete Atamel +Michael Schatzow +Moises Trovo +Nicholas Pezolano +Pankaj Garg +Paolo Bernardi +Peter Cawthron +Philipp Kosel +Suminda Dharmasena +The Gitter Badger +Tony Lambiris +Tony Worm +stanh diff --git a/etc/create_authors_file.sh b/etc/create_authors_file.sh new file mode 100755 index 00000000..97e98975 --- /dev/null +++ b/etc/create_authors_file.sh @@ -0,0 +1,3 @@ +#!/bin/bash +git shortlog -ns master | awk '$1 >= $THRESHOLD {$1="";print $0}' | \ + cut -d" " -f2- > AUTHORS