Class: Licensee::Matchers::Matcher

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

Direct Known Subclasses

Copyright, Dice, Package

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#fileObject (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

#confidenceObject



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

def confidence
  raise 'Not implemented'
end

#matchObject



10
11
12
# File 'lib/licensee/matchers/matcher.rb', line 10

def match
  raise 'Not implemented'
end