Sha256: 0a923659b448210734413739eb47438ec0076e2cc534eed24f9a55754d37336a
Contents?: true
Size: 396 Bytes
Versions: 5
Compression:
Stored size: 396 Bytes
Contents
#!/bin/sh git log --reverse --format='%aN <%aE>' | perl -we ' BEGIN { %seen = (), @authors = (); } while (<>) { next if $seen{$_}; next if /\@chromium.org/; next if /<erik.corry\@gmail.com>/; $seen{$_} = push @authors, $_; } END { print "# Authors ordered by first contribution.\n"; print "\n", @authors, "\n"; print "# Generated by tools/update-authors.sh\n"; } ' > AUTHORS
Version data entries
5 entries across 4 versions & 1 rubygems