module Recog::VerifierFactory
Public Class Methods
build(options)
click to toggle source
# File lib/recog/verifier_factory.rb, line 7 def self.build(options) formatter = Formatter.new(options, $stdout) reporter = VerifyReporter.new(options, formatter) Verifier.new(options.fingerprints, reporter) end