Sha256: b8aa85c8f341b3928707d7e8c42767ade4467bb82adf0c3c3af68c2434799bcf

Contents?: true

Size: 269 Bytes

Versions: 1

Compression:

Stored size: 269 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

1 entries across 1 versions & 1 rubygems

Version Path
botfly-0.2.1 lib/botfly/matcher/matcher.rb