Sha256: b758c801f80334e6ab00ca99a2717967e7a9ff029879090bde964c50050b784d

Contents?: true

Size: 317 Bytes

Versions: 1

Compression:

Stored size: 317 Bytes

Contents

# Combine existing list of authors with everyone known in git, sort, add header.
tail --lines=+3 AUTHORS > AUTHORS.tmp
git log --format='%aN' | grep -v "Piƫt Delport" >> AUTHORS.tmp
echo -e "List of CodeMirror contributors. Updated before every release.\n" > AUTHORS
sort -u AUTHORS.tmp >> AUTHORS
rm -f AUTHORS.tmp

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
stisla-rails-0.0.2 vendor/assets/modules/codemirror/bin/authors.sh