add_matching(pattern)
Add matching glob patterns.
# File lib/rake/file_list.rb, line 346 def add_matching(pattern) FileList.glob(pattern).each do |fn| self << fn unless excluded_from_list?(fn) end end