Sha256: a202e03e8bffbfd39708c2872027163f57fe4bace91735add34d7a8180401fa9
Contents?: true
Size: 608 Bytes
Versions: 30
Compression:
Stored size: 608 Bytes
Contents
#!/bin/bash # Thanks to the docker project! # https://github.com/docker/docker/blob/2c224e4fc09518d33780d818cf74026f6aa32744/hack/generate-authors.sh set -e # change to the directory where the script is located, this should be the project root pushd "$(dirname "$(readlink -f "$BASH_SOURCE")")/" # see also ".mailmap" for how email addresses and names are deduplicated { cat <<-'EOH' # This file lists all individuals having contributed content to the repository. # For how it is generated, see `generate-authors.sh`. EOH echo git log --format='%aN <%aE>' | LC_ALL=C.UTF-8 sort -uf } > AUTHORS popd
Version data entries
30 entries across 30 versions & 1 rubygems