Sha256: 9f617bece6107547171317407384ab8cff8348c74e34604b706ce2eb28f3eb50

Contents?: true

Size: 1000 Bytes

Versions: 2

Compression:

Stored size: 1000 Bytes

Contents

#encoding: utf-8

# the main module
module TheArrayComparator
  # the available strategies
  module Strategies
    # strategy contains substring
    class ContainsAllWithSubstringSearch < 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.all? do |line| 
        #  #does a keyword match and it is not an the exception list
        #  binding.pry
        #  @keywords.all?{ |k| line[k] } and not @exceptions.any?{ |e| line[e] }
        #end

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

        false
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
the_array_comparator-0.2.0 lib/the_array_comparator/strategies/contains_all_with_substring_search.rb
the_array_comparator-0.1.1 lib/the_array_comparator/strategies/contains_all_with_substring_search.rb