Sha256: 2dcf81676a481716073767fb5b811b3687bff6d2364d5a8e3e2fd45b29b3483c

Contents?: true

Size: 377 Bytes

Versions: 10

Compression:

Stored size: 377 Bytes

Contents

# frozen_string_literal: true

module Coverband
  module Reporters
    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

10 entries across 10 versions & 1 rubygems

Version Path
coverband-2.0.3 lib/coverband/reporters/console_report.rb
coverband-2.0.3.alpha lib/coverband/reporters/console_report.rb
coverband-2.0.2 lib/coverband/reporters/console_report.rb
coverband-2.0.2.alpha2 lib/coverband/reporters/console_report.rb
coverband-2.0.2.alpha lib/coverband/reporters/console_report.rb
coverband-2.0.1 lib/coverband/reporters/console_report.rb
coverband-2.0.1.alpha lib/coverband/reporters/console_report.rb
coverband-2.0.0 lib/coverband/reporters/console_report.rb
coverband-2.0.0.alpha1 lib/coverband/reporters/console_report.rb
coverband-2.0.0.alpha lib/coverband/reporters/console_report.rb