Sha256: cde674dd7dcf66bb4808b07229ea2de090b4594942271dd6b9972abd9f265d56
Contents?: true
Size: 573 Bytes
Versions: 5
Compression:
Stored size: 573 Bytes
Contents
#encoding: utf-8 # the main module module TheArrayComparator # the available strategies module SearchingStrategies #strategy is not equal class IsNotEqual < Base # Create a new instance of strategy # # @see Base def initialize(sample=Sample.new) super warning_unsupported_exceptions end # Check the keywords with the data # # @return [Boolean] # The result of the check def success? return true if @keywords.to_a != @data false end end end end
Version data entries
5 entries across 5 versions & 1 rubygems