Class: ActiveModel::Validations::NumericalityValidator
- Inherits:
-
EachValidator
- Object
- ActiveModel::Validator
- EachValidator
- ActiveModel::Validations::NumericalityValidator
- Includes:
- Comparability, ResolveValue
- Defined in:
- activemodel/lib/active_model/validations/numericality.rb
Overview
:nodoc:
Direct Known Subclasses
Constant Summary collapse
- RANGE_CHECKS =
{ in: :in? }
- NUMBER_CHECKS =
{ odd: :odd?, even: :even? }
- RESERVED_OPTIONS =
COMPARE_CHECKS.keys + NUMBER_CHECKS.keys + RANGE_CHECKS.keys + [:only_integer, :only_numeric]
- INTEGER_REGEX =
/\A[+-]?\d+\z/
- HEXADECIMAL_REGEX =
/\A[+-]?0[xX]/
Constants included from Comparability
Instance Attribute Summary
Attributes inherited from EachValidator
Attributes inherited from ActiveModel::Validator
Instance Method Summary collapse
- #check_validity! ⇒ Object
- #validate_each(record, attr_name, value, precision: Float::DIG, scale: nil) ⇒ Object
Methods included from ResolveValue
Methods included from Comparability
Methods inherited from EachValidator
Methods inherited from ActiveModel::Validator
#initialize, kind, #kind, #validate
Constructor Details
This class inherits a constructor from ActiveModel::EachValidator
Instance Method Details
#check_validity! ⇒ Object
22 23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'activemodel/lib/active_model/validations/numericality.rb', line 22 def check_validity! .slice(*COMPARE_CHECKS.keys).each do |option, value| unless value.is_a?(Numeric) || value.is_a?(Proc) || value.is_a?(Symbol) raise ArgumentError, ":#{option} must be a number, a symbol or a proc" end end .slice(*RANGE_CHECKS.keys).each do |option, value| unless value.is_a?(Range) raise ArgumentError, ":#{option} must be a range" end end end |
#validate_each(record, attr_name, value, precision: Float::DIG, scale: nil) ⇒ Object
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
# File 'activemodel/lib/active_model/validations/numericality.rb', line 36 def validate_each(record, attr_name, value, precision: Float::DIG, scale: nil) unless is_number?(value, precision, scale) record.errors.add(attr_name, :not_a_number, **(value)) return end if allow_only_integer?(record) && !is_integer?(value) record.errors.add(attr_name, :not_an_integer, **(value)) return end value = parse_as_number(value, precision, scale) .slice(*RESERVED_OPTIONS).each do |option, option_value| if NUMBER_CHECKS.include?(option) unless value.to_i.public_send(NUMBER_CHECKS[option]) record.errors.add(attr_name, option, **(value)) end elsif RANGE_CHECKS.include?(option) unless value.public_send(RANGE_CHECKS[option], option_value) record.errors.add(attr_name, option, **(value).merge!(count: option_value)) end elsif COMPARE_CHECKS.include?(option) option_value = option_as_number(record, option_value, precision, scale) unless value.public_send(COMPARE_CHECKS[option], option_value) record.errors.add(attr_name, option, **(value).merge!(count: option_value)) end end end end |