# File lib/rake.rb, line 819 819: def exclude(*patterns) 820: patterns.each do |pat| @exclude_patterns << pat end 821: if ! @pending 822: calculate_exclude_regexp 823: reject! { |fn| fn =~ @exclude_re } 824: end 825: self 826: end