Class: Licensee::Matchers::Matcher
- Inherits:
-
Object
- Object
- Licensee::Matchers::Matcher
- Defined in:
- lib/licensee/matchers/matcher.rb
Instance Attribute Summary collapse
-
#file ⇒ Object
readonly
Returns the value of attribute file.
Instance Method Summary collapse
- #confidence ⇒ Object
-
#initialize(file) ⇒ Matcher
constructor
A new instance of Matcher.
- #match ⇒ Object
Constructor Details
#initialize(file) ⇒ Matcher
Returns a new instance of Matcher.
6 7 8 |
# File 'lib/licensee/matchers/matcher.rb', line 6 def initialize(file) @file = file end |
Instance Attribute Details
#file ⇒ Object (readonly)
Returns the value of attribute file.
4 5 6 |
# File 'lib/licensee/matchers/matcher.rb', line 4 def file @file end |
Instance Method Details
#confidence ⇒ Object
14 15 16 |
# File 'lib/licensee/matchers/matcher.rb', line 14 def confidence raise 'Not implemented' end |
#match ⇒ Object
10 11 12 |
# File 'lib/licensee/matchers/matcher.rb', line 10 def match raise 'Not implemented' end |