Sha256: 49952273075839cd21335d0b41c63075eb23d8fc8f8ead7cf09e5226438decd1
Contents?: true
Size: 500 Bytes
Versions: 1
Compression:
Stored size: 500 Bytes
Contents
# -*- encoding: utf-8 -*- module Coco # My childs will format coverages information. # Kind of abstract class. class Formatter # raw_coverages - The Hash from Coverage.result. # uncovered - An Array list of uncovered files. # @todo I think covered is a better name than raw_coverages def initialize raw_coverages, uncovered @raw_coverages = raw_coverages @uncovered = uncovered end def format "Implement me in child" end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
coco-0.10.0 | lib/coco/formatter/formatter.rb |