class Build::Files::Path

def read(mode = File::RDONLY)

Read the entire contents of the file.
def read(mode = File::RDONLY)
	open(mode) do |file|
		file.read
	end
end