Sha256: a60eaa9ec387a12cec88cd323f33e8caa6f52eb2592bf3f9f928c4e4ece0f431
Contents?: true
Size: 545 Bytes
Versions: 238
Compression:
Stored size: 545 Bytes
Contents
# frozen_string_literal: true module SplitIoClient class ContainsAnyMatcher < SetMatcher MATCHER_TYPE = 'CONTAINS_ANY' attr_reader :attribute def initialize(attribute, remote_array, logger) super(attribute, remote_array, logger) end def match?(args) matches = local_set(args[:attributes], @attribute).intersect? @remote_set @logger.log_if_debug("[ContainsAnyMatcher] Remote Set #{@remote_set} contains any \ #{@attribute} or #{args[:attributes]}-> #{matches}") matches end end end
Version data entries
238 entries across 238 versions & 1 rubygems