Sha256: 84f509dc87c00e16197a5702e5154a1478f50c2aa5d312d2bdcc3b66bde04a24
Contents?: true
Size: 480 Bytes
Versions: 41
Compression:
Stored size: 480 Bytes
Contents
# frozen_string_literal: true module Coverband module Reporters ### # Console Report allows for simple reporting via the command line. ### class ConsoleReport < Base def self.report(store, options = {}) scov_style_report = super(store, options) scov_style_report[:merged].each_pair do |file, usage| Coverband.configuration.logger.info "#{file}: #{usage["data"]}" end scov_style_report end end end end
Version data entries
41 entries across 41 versions & 1 rubygems