class Rake::FileList

def exclude?(fn)

Should the given file name be excluded?
def exclude?(fn)
  calculate_exclude_regexp unless @exclude_re
  fn =~ @exclude_re || @exclude_procs.any? { |p| p.call(fn) }
end