Class: Hoodoo::Presenters::Float
- Defined in:
- lib/hoodoo/presenters/types/float.rb
Overview
A JSON Float schema member.
Instance Attribute Summary
Attributes inherited from Field
Instance Method Summary collapse
-
#validate(data, path = '') ⇒ Object
Check if data is a valid Float and return a Hoodoo::Errors instance.
Methods inherited from Field
#full_path, #has_default?, #initialize, #render, #walk
Constructor Details
This class inherits a constructor from Hoodoo::Presenters::Field
Instance Method Details
#validate(data, path = '') ⇒ Object
Check if data is a valid Float and return a Hoodoo::Errors instance.
10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'lib/hoodoo/presenters/types/float.rb', line 10 def validate( data, path = '' ) errors = super( data, path ) return errors if errors.has_errors? || ( ! @required && data.nil? ) unless data.is_a?( ::Float ) errors.add_error( 'generic.invalid_float', :message => "Field `#{ full_path( path ) }` is an invalid float", :reference => { :field_name => full_path( path ) } ) end errors end |