class Rake::FileList

def clear_exclude

Clear all the exclude patterns so that we exclude nothing.
def clear_exclude
  @exclude_patterns = []
  @exclude_procs = []
  calculate_exclude_regexp if ! @pending
  self
end