Class: SplitIoClient::EndsWithMatcher

Inherits:
Object
  • Object
show all
Defined in:
lib/splitclient-rb/engine/matchers/ends_with_matcher.rb

Constant Summary collapse

MATCHER_TYPE =
'ENDS_WITH'.freeze

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attribute, suffix_list) ⇒ EndsWithMatcher

Returns a new instance of EndsWithMatcher.



7
8
9
10
# File 'lib/splitclient-rb/engine/matchers/ends_with_matcher.rb', line 7

def initialize(attribute, suffix_list)
  @attribute = attribute
  @suffix_list = suffix_list
end

Instance Attribute Details

#attributeObject (readonly)

Returns the value of attribute attribute.



5
6
7
# File 'lib/splitclient-rb/engine/matchers/ends_with_matcher.rb', line 5

def attribute
  @attribute
end

Instance Method Details

#match?(args) ⇒ Boolean

Returns:

  • (Boolean)


12
13
14
15
16
17
18
19
20
# File 'lib/splitclient-rb/engine/matchers/ends_with_matcher.rb', line 12

def match?(args)
  value = args[:value] || args[:attributes].fetch(@attribute) do |a|
    args[:attributes][a.to_s] || args[:attributes][a.to_sym]
  end

  return false if @suffix_list.empty?

  @suffix_list.any? { |suffix| value.to_s.end_with? suffix }
end

#string_type?Boolean

Returns:

  • (Boolean)


22
23
24
# File 'lib/splitclient-rb/engine/matchers/ends_with_matcher.rb', line 22

def string_type?
  true
end