Class: Licensee::Matchers::Exact

Inherits:
Matcher
  • Object
show all
Defined in:
lib/licensee/matchers/exact.rb

Constant Summary

Constants inherited from Matcher

Matcher::HASH_METHODS

Instance Attribute Summary

Attributes inherited from Matcher

#file

Instance Method Summary collapse

Methods inherited from Matcher

#initialize, #name

Methods included from HashHelper

#to_h

Constructor Details

This class inherits a constructor from Licensee::Matchers::Matcher

Instance Method Details

#confidenceObject



14
15
16
# File 'lib/licensee/matchers/exact.rb', line 14

def confidence
  100
end

#matchObject



6
7
8
9
10
11
12
# File 'lib/licensee/matchers/exact.rb', line 6

def match
  return @match if defined? @match

  @match = potential_matches.find do |potential_match|
    potential_match.wordset == file.wordset
  end
end