require "csv" require "rspec/core/formatters/base_formatter" module RspecLogFormatter class AnalyzerFormatter < RSpec::Core::Formatters::BaseFormatter FILENAME = "rspec.history" class Factory def initialize(options={}) @options = options end def build(output=$stdout) RspecLogFormatter::AnalyzerFormatter.new(output, { builds_to_analyze: nil, max_reruns: nil }.merge(@options)) end end def initialize(output, options={}) super(output) @output = output @options = options end def dump_summary(_,_,_,_) @output.puts RspecLogFormatter::Analysis::PrettyPrinter.new( RspecLogFormatter::Analysis::Analyzer.new(HistoryManager.new(FILENAME), @options).analyze ) end end end