# File lib/rake/file_list.rb, line 97 97: def initialize(*patterns) 98: @pending_add = [] 99: @pending = false 100: @exclude_patterns = DEFAULT_IGNORE_PATTERNS.dup 101: @exclude_procs = DEFAULT_IGNORE_PROCS.dup 102: @items = [] 103: patterns.each { |pattern| include(pattern) } 104: yield self if block_given? 105: end