module Recog::MatcherFactory

Public Class Methods

build(options) click to toggle source
# File lib/recog/matcher_factory.rb, line 8
def self.build(options)
  formatter = Formatter.new(options, $stdout)
  reporter  = MatchReporter.new(options, formatter)
  Matcher.new(options.fingerprints, reporter, options.multi_match)
end