for_files(*wildcards)
Perform a block with each file matching a set of wildcards.
# File lib/rake/contrib/sys.rb, line 162 def for_files(*wildcards) wildcards.each do |wildcard| Dir[wildcard].each do |fn| yield(fn) end end end