Class: Ardm::Property::Boolean

Inherits:
Object show all
Defined in:
lib/ardm/property/boolean.rb

Direct Known Subclasses

ParanoidBoolean

Constant Summary

Constants inherited from Ardm::Property

INVALID_NAMES, Infinity, JSON, OPTIONS, PRIMITIVES, VISIBILITY_OPTIONS

Instance Attribute Summary

Attributes inherited from Ardm::Property

#allow_blank, #allow_nil, #coercion_method, #default, #dump_as, #index, #instance_variable_name, #load_as, #model, #name, #options, #reader_visibility, #required, #unique_index, #writer_visibility

Instance Method Summary collapse

Methods inherited from Object

#dump, #load, #marshal, #to_child_key, #unmarshal

Methods inherited from Ardm::Property

accept_options, accepted_options, #allow_blank?, #allow_nil?, #assert_valid_value, #bind, demodulize, demodulized_names, descendants, determine_class, #field, find_class, #get, #get!, inherited, #inspect, #key?, #lazy?, #loaded?, options, primitive, #primitive, #primitive?, #properties, #required?, #serial?, #set, #set!, #set_default_value, #typecast, #unique?, #valid?

Methods included from Equalizer

#equalize

Methods included from Subject

#default?, #default_for

Methods included from Assertions

#assert_kind_of

Constructor Details

#initialize(model, name, options = {}) ⇒ Boolean

Returns a new instance of Boolean.



10
11
12
13
14
15
# File 'lib/ardm/property/boolean.rb', line 10

def initialize(model, name, options = {})
  # validates presence in rails fails for false.
  # Boolean must therefore behave like a set.
  options[:set] = [true, false]
  super model, name, options
end

Instance Method Details

#value_dumped?(value) ⇒ Boolean

Returns:



18
19
20
# File 'lib/ardm/property/boolean.rb', line 18

def value_dumped?(value)
  value_loaded?(value)
end

#value_loaded?(value) ⇒ Boolean

Returns:



23
24
25
# File 'lib/ardm/property/boolean.rb', line 23

def value_loaded?(value)
  value == true || value == false
end