Class: PoroValidator::Validators::FloatValidator
- Defined in:
- lib/poro_validator/validators/float_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 |
# File 'lib/poro_validator/validators/float_validator.rb', line 4 def validate(attribute, value, ) = .fetch(:message, :float) begin Kernel.Float(value.to_s) nil rescue errors.add(attribute, ) end end |