Sha256: a4388a74b95f16f5b0cf7a9aed719936b147d54da79d464702dc332cd48a8d6f
Contents?: true
Size: 329 Bytes
Versions: 87
Compression:
Stored size: 329 Bytes
Contents
require 'recog/matcher' require 'recog/formatter' require 'recog/match_reporter' module Recog module MatcherFactory def self.build(options) formatter = Formatter.new(options, $stdout) reporter = MatchReporter.new(options, formatter) Matcher.new(options.fingerprints, reporter, options.multi_match) end end end
Version data entries
87 entries across 87 versions & 1 rubygems