class Build::Files::List

def roots

@returns [Array(Path)] Sorted unique root paths.
Get all unique root paths from the list.
def roots
	collect{|path| path.root}.sort.uniq
end