Sha256: 2f1fb0a5275570d5d562b81a0e43d6d4eb9ea0cfdfe6f13b42f0f6f2cbcdd5fa
Contents?: true
Size: 775 Bytes
Versions: 10
Compression:
Stored size: 775 Bytes
Contents
module OpenActive module Validators class StringValidator < 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 [mixed] The same value. def coerce(value) value.to_str end # Run validation on the given value. # # @param value [mixed] The value to validate. # @return [Boolean] Whether validation passes or not. def run(value) return true if value.is_a?(String) return true if value.respond_to?(:to_str) false end end end end
Version data entries
10 entries across 10 versions & 1 rubygems