class Rake::FileList

def existing!

exist on the file system.
Modify the current file list so that it contains only file name that
def existing!
  resolve
  @items = @items.select { |fn| File.exist?(fn) }
  self
end