Skip to content

Instantly share code, notes, and snippets.

@DRMacIver
Created April 28, 2009 16:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DRMacIver/103249 to your computer and use it in GitHub Desktop.
Save DRMacIver/103249 to your computer and use it in GitHub Desktop.
files = []
STDIN.each_line do |line|
files.flatten
if (line =~ /^\-+$/) and !files.empty?
puts files.join
files = []
end
files << line.scan(/ \/[^\s]+\.scala/)
end
puts files.flatten.join;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment