class Build::Files::List

def copy(destination)

@parameter destination [Path] The destination root path.
Copy all files in the list to a destination.
def copy(destination)
	each do |path|
		path.copy(destination / path.relative_path)
	end
end