class Rake::FileList

def existing

file list that exist on the file system.
Return a new file list that only contains file names from the current
def existing
  select { |fn| File.exist?(fn) }
end