Sha256: 2c3372bd0376d2792fec65be403743d78f8f0ad4fe98d7ef5412a83821e7ac94

Contents?: true

Size: 464 Bytes

Versions: 9

Compression:

Stored size: 464 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.each_pair do |file, usage|
          Coverband.configuration.logger.info "#{file}: #{usage}"
        end
        scov_style_report
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
coverband-4.0.1.beta lib/coverband/reporters/console_report.rb
coverband-4.0.1.alpha lib/coverband/reporters/console_report.rb
coverband-4.0.0 lib/coverband/reporters/console_report.rb
coverband-4.0.0.alpha lib/coverband/reporters/console_report.rb
coverband-3.0.1 lib/coverband/reporters/console_report.rb
coverband-3.0.1.alpha lib/coverband/reporters/console_report.rb
coverband-3.0.0 lib/coverband/reporters/console_report.rb
coverband-3.0.0.alpha2 lib/coverband/reporters/console_report.rb
coverband-3.0.0.alpha lib/coverband/reporters/console_report.rb