Sha256: acb331122e1ef4b00a701b4944ef978207f19a2f4d37220bfcd00255e7b3c908
Contents?: true
Size: 264 Bytes
Versions: 5
Compression:
Stored size: 264 Bytes
Contents
module Osrcry class Contributors def self.execute collaborators = `git log --pretty=format:"* %an <%ae>"`.split("\n").uniq.sort File.open('CONTRIBUTORS.md', 'w') do |file| file.write(collaborators.join("\n")) end end end end
Version data entries
5 entries across 5 versions & 1 rubygems