diff options
author | Felix Lange <fjl@twurst.com> | 2016-11-09 10:09:05 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-09 10:09:05 +0800 |
commit | 355f4b0c15fadec683877b5de1361bd678fee28e (patch) | |
tree | ef1c3a915af7f07c049c08318fe450b2ecf46654 /vendor/github.com/aristanetworks/goarista/AUTHORS | |
parent | 8b1df1a259fe6dc4c15e391e9c0762c9621d9d72 (diff) | |
parent | bbb5e5d56a51d9430aec934c76a0bd02f1f2427d (diff) | |
download | go-tangerine-355f4b0c15fadec683877b5de1361bd678fee28e.tar go-tangerine-355f4b0c15fadec683877b5de1361bd678fee28e.tar.gz go-tangerine-355f4b0c15fadec683877b5de1361bd678fee28e.tar.bz2 go-tangerine-355f4b0c15fadec683877b5de1361bd678fee28e.tar.lz go-tangerine-355f4b0c15fadec683877b5de1361bd678fee28e.tar.xz go-tangerine-355f4b0c15fadec683877b5de1361bd678fee28e.tar.zst go-tangerine-355f4b0c15fadec683877b5de1361bd678fee28e.zip |
Merge pull request #3232 from zsfelfoldi/light-topic3
Diffstat (limited to 'vendor/github.com/aristanetworks/goarista/AUTHORS')
-rw-r--r-- | vendor/github.com/aristanetworks/goarista/AUTHORS | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/vendor/github.com/aristanetworks/goarista/AUTHORS b/vendor/github.com/aristanetworks/goarista/AUTHORS new file mode 100644 index 000000000..5bb93cb3f --- /dev/null +++ b/vendor/github.com/aristanetworks/goarista/AUTHORS @@ -0,0 +1,25 @@ +All contributors are required to sign a "Contributor License Agreement" at + <TBD> + +The following organizations and people have contributed code to this library. +(Please keep both lists sorted alphabetically.) + + +Arista Networks, Inc. + + +Benoit Sigoure +Fabrice Rabaute + + + +The list of individual contributors for code currently in HEAD can be obtained +at any time with the following script: + +find . -type f \ +| while read i; do \ + git blame -t $i 2>/dev/null; \ + done \ +| sed 's/^[0-9a-f]\{8\} [^(]*(\([^)]*\) [-+0-9 ]\{14,\}).*/\1/;s/ *$//' \ +| awk '{a[$0]++; t++} END{for(n in a) print n}' \ +| sort |