class Covered::Statistics

def self.for(coverage)

@returns [Covered::Statistics] Statistics containing the given coverage.
@parameter coverage [Covered::Coverage] The coverage object to summarize.
Build statistics for a single coverage object.
def self.for(coverage)
	self.new.tap do |statistics|
		statistics << coverage
	end
end