Class: DataModel::Builtin::Boolean

Inherits:
Type
  • Object
show all
Includes:
Errors
Defined in:
lib/data_model/builtin/boolean.rb

Overview

Boolean type

Defined Under Namespace

Classes: Arguments

Instance Attribute Summary

Attributes inherited from Type

#type_args, #type_registry

Instance Method Summary collapse

Methods included from Errors

#blank_error, #blank_error_message, #coerce_error, #coerce_error_message, #earliest_error, #early_error_message, #error_messages, #exclusion_error, #exclusion_error_message, #extra_keys_error, #extra_keys_error_message, #format_error, #format_error_message, #inclusion_error, #inclusion_error_message, #late_error_message, #latest_error, #max_error, #max_error_message, #min_error, #min_error_message, #missing_error, #missing_error_message, #type_error, #type_error_message

Methods inherited from Type

#configure, #initialize, #instantiate, #invoke, #type_name

Constructor Details

This class inherits a constructor from DataModel::Type

Instance Method Details

#read(val, coerce: false) ⇒ Array(Object, Error)

read a value, and validate it

Parameters:

  • val (Object)

    the value to read

  • coerce (Boolean) (defaults to: false)

    whether to coerce the value

Returns:



15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'lib/data_model/builtin/boolean.rb', line 15

def read(val, coerce: false)
	err = Error.new

	if val.nil?
		err.add(missing_error(type_name))
		return [val, err]
	end

	if coerce
		case val
		when "true"
			val = true
		when "false"
			val = false
		end
	end

	if !val.is_a?(TrueClass) && !val.is_a?(FalseClass)
		err.add(type_error(type_name, val))
		return [val, err]
	end

	return [val, err]
end