Sha256: bfbfe89068e67964771835da802aa2787c6348d432529d887c77ae287c0a73f7
Contents?: true
Size: 546 Bytes
Versions: 9
Compression:
Stored size: 546 Bytes
Contents
match 'lib/**.rb' do |file, line| case line when /^\s*#/ 'Comment' when /^\s*$/ 'Blank' else 'Ruby' end end match 'test/**.rb' do |file, line| case file when /fixtures/i nil else case line when /^\s*#/ 'Comment' when /^\s*$/ 'Blank' else 'Test' end end end match 'application/js/*.js' do |file, line| case file when /vendor/i nil else case line when /^\s*\/\// 'Comment' when /^\s*$/ 'Blank' else 'JavaScript' end end end
Version data entries
9 entries across 9 versions & 1 rubygems