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
Return a new file list that
only contains file names from the current file list that exist on the file
system.
# File lib/rake/file_list.rb, line 316
def existing
select { |fn| File.exist?(fn) }
end