partition(&block)
FileList version of partition. Needed because the nested arrays should be FileLists in this version.
# File lib/rake/file_list.rb, line 326 def partition(&block) # :nodoc: resolve result = @items.partition(&block) [ FileList.new.import(result[0]), FileList.new.import(result[1]), ] end