Class: PoroValidator::Validators::NumericValidator
- Defined in:
- lib/poro_validator/validators/numeric_validator.rb
Overview
Instance Attribute Summary
Attributes inherited from BaseClass
Instance Method Summary collapse
Methods inherited from BaseClass
#__validate__, #context, #errors, #initialize, #nested?, #options, #value
Constructor Details
This class inherits a constructor from PoroValidator::Validators::BaseClass
Instance Method Details
#validate(attribute, value, options) ⇒ Object
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/poro_validator/validators/numeric_validator.rb', line 4 def validate(attribute, value, ) = .fetch(:message, :numeric) begin Kernel.Integer(value.to_s) nil rescue errors.add(attribute, :integer) return end .keys.each do |key| matcher = matchers(key) next if matcher.nil? unless matchers(key).call(value, [key]) errors.add(attribute, , key => [key]) end end end |