class Build::Files::List

def intersects? other

Does this list of files include the path of any other?
def intersects? other
	other.any?{|path| include?(path)}
end