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.
ext(newext='')
public
Return a new FileList with
String#ext method applied to each
member of the array.
This method is a shortcut for:
array.collect { |item| item.ext(newext) }
ext is a user added method
for the Array class.
# File lib/rake/file_list.rb, line 280
def ext(newext='')
collect { |fn| fn.ext(newext) }
end