Sha256: e62ff37749bade8fa9ba99f297b8f3308d42edff81e0090e8ac9817820c5ecdf

Contents?: true

Size: 331 Bytes

Versions: 39

Compression:

Stored size: 331 Bytes

Contents

#!/usr/bin/env sh

#
# Auto-generate a list of contributors for a given Git repository.
#
# At the root of a project:
#
#   ./script/contributors.sh
#

echo "Contributors to this project:" > CONTRIBUTORS.md
echo >> CONTRIBUTORS.md
git shortlog -s | cut -c '8-200' | awk '{print "* ", $0}' >> CONTRIBUTORS.md
echo >> CONTRIBUTORS.md

Version data entries

39 entries across 39 versions & 1 rubygems

Version Path
hydra-11.0.0 script/contributors.sh
hydra-11.0.0.rc1 script/contributors.sh
hydra-10.0.1 script/contributors.sh
hydra-10.0.0 script/contributors.sh
hydra-9.1.0 script/contributors.sh
hydra-9.1.0.rc5 script/contributors.sh
hydra-9.1.0.rc4 script/contributors.sh
hydra-9.1.0.rc3 script/contributors.sh
hydra-9.1.0.rc2 script/contributors.sh
hydra-9.1.0.rc1 script/contributors.sh
hydra-8.0.0 script/contributors.sh
hydra-9.0.0 script/contributors.sh
hydra-7.2.0 script/contributors.sh
hydra-7.1.1 script/contributors.sh
hydra-9.0.0.rc1 script/contributors.sh
hydra-7.1.0 script/contributors.sh
hydra-7.0.0 script/contributors.sh
hydra-7.0.0.rc1 script/contributors.sh
hydra-6.2.0 script/contributors.sh
hydra-6.2.0.rc1 script/contributors.sh