Class: CSVDecision::Matchers::Matcher Abstract
- Inherits:
-
Object
- Object
- CSVDecision::Matchers::Matcher
- Defined in:
- lib/csv_decision/matchers.rb
Overview
This class is abstract.
Subclass and override #matches? to implement a custom Matcher class.
Instance Method Summary collapse
-
#initialize(_options = nil) ⇒ Matcher
constructor
A new instance of Matcher.
-
#matches?(cell) ⇒ false, CSVDecision::Proc
Determine if the input cell string is recognised by this Matcher.
Constructor Details
#initialize(_options = nil) ⇒ Matcher
Returns a new instance of Matcher
139 |
# File 'lib/csv_decision/matchers.rb', line 139 def initialize( = nil); end |
Instance Method Details
#matches?(cell) ⇒ false, CSVDecision::Proc
Determine if the input cell string is recognised by this Matcher.
146 |
# File 'lib/csv_decision/matchers.rb', line 146 def matches?(cell); end |