Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v2_2_9) is shown here.
existing!()
public
Modify the current file list so that it contains only file name that exist
on the file system.
# File lib/rake/file_list.rb, line 322
def existing!
resolve
@items = @items.select { |fn| File.exist?(fn) }
self
end