class RspecLogFormatter::AnalyzerFormatter

Constants

FILENAME

Public Class Methods

new(output, options={}) click to toggle source
Calls superclass method
# File lib/rspec_log_formatter/analyzer_formatter.rb, line 21
def initialize(output, options={})
  super(output)
  @output = output
  @options = options
end

Public Instance Methods

dump_summary(_,_,_,_) click to toggle source
# File lib/rspec_log_formatter/analyzer_formatter.rb, line 27
def dump_summary(_,_,_,_)
  @output.puts RspecLogFormatter::Analysis::PrettyPrinter.new(
    RspecLogFormatter::Analysis::Analyzer.new(HistoryManager.new(FILENAME), @options).analyze
  )
end