Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v1_9_3_392) is shown here.
for_files(*wildcards)
public
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