Sha256: 5b352bc0fc7f3a9861e981ba4263f90d3a476ebe489d02c280abe0b66f33f7b2

Contents?: true

Size: 274 Bytes

Versions: 7

Compression:

Stored size: 274 Bytes

Contents

module Botfly
  class Matcher
    def initialize(condition)
      Botfly.logger.info("MCH: Creating Matcher")
      @condition = condition
    end
    def match(params)
      raise "AbstractMethodError: You must implement match in a concrete subclass"
    end
    
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
botfly-0.3.6 lib/botfly/matcher/matcher.rb
botfly-0.3.5 lib/botfly/matcher/matcher.rb
botfly-0.3.4 lib/botfly/matcher/matcher.rb
botfly-0.3.3 lib/botfly/matcher/matcher.rb
botfly-0.3.2 lib/botfly/matcher/matcher.rb
botfly-0.3.1 lib/botfly/matcher/matcher.rb
botfly-0.3.0 lib/botfly/matcher/matcher.rb