Sha256: 36fcf4de378b51d218da6dac846a174cfa227008de5766304591feb099070456
Contents?: true
Size: 375 Bytes
Versions: 6
Compression:
Stored size: 375 Bytes
Contents
#!/usr/bin/env ruby contributors = `git log --format='%aN <%aE>'` .gsub(/hiddenbek/, 'Scott Wadden') .gsub(/Asmod4n/, 'Hendrik Beskow') .lines .uniq .reject { |line| line.match? /asppsa@gmail.com|hannes.georg@xing.com|spotapov|yehuda-katzs-mac|wycats / } .sort { |str1, str2| str1.casecmp(str2) } file = File.open('CONTRIBUTORS', 'w') file << contributors.join
Version data entries
6 entries across 6 versions & 1 rubygems