class RspecLogFormatter::AnalyzerFormatter::Factory
Public Class Methods
new(options={})
click to toggle source
# File lib/rspec_log_formatter/analyzer_formatter.rb, line 9 def initialize(options={}) @options = options end
Public Instance Methods
build(output=$stdout)
click to toggle source
# File lib/rspec_log_formatter/analyzer_formatter.rb, line 13 def build(output=$stdout) RspecLogFormatter::AnalyzerFormatter.new(output, { builds_to_analyze: nil, max_reruns: nil }.merge(@options)) end