Class: Hoodoo::Presenters::Boolean
- Defined in:
- lib/hoodoo/presenters/types/boolean.rb
Overview
A JSON Boolean schema member.
Instance Attribute Summary
Attributes inherited from Field
Instance Method Summary collapse
-
#validate(data, path = '') ⇒ Object
Check if data is a valid Boolean 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 Boolean 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/boolean.rb', line 10 def validate( data, path = '' ) errors = super( data, path ) return errors if errors.has_errors? || ( ! @required && data.nil? ) unless !! data == data errors.add_error( 'generic.invalid_boolean', :message => "Field `#{ full_path( path ) }` is an invalid boolean", :reference => { :field_name => full_path( path ) } ) end errors end |