class Covered::Coverage

def read(&block)

def read(&block)
	if block_given?
		File.open(@path, "r", &block)
	else
		File.read(@path)
	end
end