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