Sha256: 189ea7bf6950bf9bfd78225cf02f83d9969dc88ec301fc5d1d736806a099c7b8
Contents?: true
Size: 425 Bytes
Versions: 8
Compression:
Stored size: 425 Bytes
Contents
#!/usr/bin/env ruby # # ruby-line-authors # # Output the authors of every line of Ruby code in this # directory and all subdirectories. Names are output # for every line. # # Example output when Alice wrote three lines and Bob # wrote one, irrespective of the number of files: # # Alice # Alice # Bob # Alice RUBY_FILES = `find . -name '*.rb'`.freeze RUBY_FILES .each_line { |filename| puts `line-authors #{filename}` }
Version data entries
8 entries across 8 versions & 1 rubygems