# File lib/rake.rb, line 1471 1471: def exclude?(fn) 1472: calculate_exclude_regexp unless @exclude_re 1473: fn =~ @exclude_re || @exclude_procs.any? { |p| p.call(fn) } 1474: end