add_matching(pattern)
Add matching glob patterns.
# File lib/rake/file_list.rb, line 342 def add_matching(pattern) Dir[pattern].each do |fn| self << fn unless exclude?(fn) end end