Sha256: 879ed8a6fffcae19a120c264e758ce8292bc3c5a84806130169af6e9f9b02c4a

Contents?: true

Size: 770 Bytes

Versions: 5

Compression:

Stored size: 770 Bytes

Contents

#encoding: utf-8

# the main module
module TheArrayComparator
  # the available strategies
  module SearchingStrategies
    # strategy contains substring
    class ContainsAnyWithSubstringSearch < Base

      # Create a new instance of strategy
      #
      # @see Base
      def initialize(sample=Sample.new)
        super
      end

      # Check the keywords with the data
      #
      # @return [Boolean]
      #   The result of the check
      def success?
        return true if @keywords.blank? and @data.blank?

        return true if @data.any? do |line| 
          #does a keyword match and it is not an the exception list
          @keywords.any?{ |k| line[k] } and not @exceptions.any?{ |e| line[e] }
        end

        false
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
the_array_comparator-0.5.0 lib/the_array_comparator/searching_strategies/contains_any_with_substring_search.rb
the_array_comparator-0.4.0 lib/the_array_comparator/searching_strategies/contains_any_with_substring_search.rb
the_array_comparator-0.3.4 lib/the_array_comparator/searching_strategies/contains_any_with_substring_search.rb
the_array_comparator-0.3.1 lib/the_array_comparator/searching_strategies/contains_any_with_substring_search.rb
the_array_comparator-0.3.0 lib/the_array_comparator/searching_strategies/contains_any_with_substring_search.rb