module OpenActive module Validators class NumberValidator < 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 [float] The coerced value def coerce(value) BigDecimal(value.to_s) end # Run validation on the given value. # # @param value [mixed] The value to validate. # @return [Boolean] Whether validation passes or not. def run(value) BigDecimal(value.to_s) true rescue ArgumentError => _e false end end end end