class Coverband::Reporters::ConsoleReport
Console Report allows for simple reporting via the command line.
Public Class Methods
report(store, options = {})
click to toggle source
Calls superclass method
Coverband::Reporters::Base::report
# File lib/coverband/reporters/console_report.rb, line 9 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