Sha256: 9d49f71f250811fc86f753d83324a933456fa876b47cb890e9fade633f9b12d4

Contents?: true

Size: 309 Bytes

Versions: 10

Compression:

Stored size: 309 Bytes

Contents

module OpenActive
  module Validators
    class NullValidator < BaseValidator
      # Run validation on the given value.
      #
      # @param value [mixed] The value to validate.
      # @return [Boolean] Whether validation passes or not.
      def run(value)
        value.nil?
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
openactive-0.5.0 lib/openactive/validators/null_validator.rb
openactive-0.4.0 lib/openactive/validators/null_validator.rb
openactive-0.3.0 lib/openactive/validators/null_validator.rb
openactive-0.2.2 lib/openactive/validators/null_validator.rb
openactive-0.2.1 lib/openactive/validators/null_validator.rb
openactive-0.2.0 lib/openactive/validators/null_validator.rb
openactive-0.1.2 lib/openactive/validators/null_validator.rb
openactive-0.1.1 lib/openactive/validators/null_validator.rb
openactive-0.1.0 lib/openactive/validators/null_validator.rb
openactive-0.1.0.rc1 lib/openactive/validators/null_validator.rb