Sha256: 4846e0f4ec2edc52962e7228526b8073bd1dc377b9a57ed9d0f54bf54207b9df

Contents?: true

Size: 745 Bytes

Versions: 10

Compression:

Stored size: 745 Bytes

Contents

module OpenActive
  module Validators
    class IntValidator < BaseValidator
      # Coerce given value to the type the validator is validating against.
      # PLEASE NOTE: no checks are performed on the given value.
      # It is therefore recommended to call the "run" method first before this.
      #
      # @param value [mixed] The value to coerce.
      # @return [int] The coerced value
      def coerce(value)
        value.to_i
      end

      # Run validation on the given value.
      #
      # @param value [mixed] The value to validate.
      # @return [Boolean] Whether validation passes or not.
      def run(value)
        Integer(value)
        true
      rescue ArgumentError => _e
        false
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

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