Class: Ardm::Property::Object

Inherits:
Ardm::Property show all
Defined in:
lib/ardm/property/object.rb

Direct Known Subclasses

Boolean, Class, Date, DateTime, Enum, Flag, Numeric, String, Time

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 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?, #value_dumped?, #value_loaded?

Methods included from Equalizer

#equalize

Methods included from Subject

#default?, #default_for

Methods included from Assertions

#assert_kind_of

Instance Method Details

#dump(value) ⇒ Object



11
12
13
# File 'lib/ardm/property/object.rb', line 11

def dump(value)
  instance_of?(Object) ? marshal(value) : value
end

#load(value) ⇒ Object



16
17
18
# File 'lib/ardm/property/object.rb', line 16

def load(value)
  typecast(instance_of?(Object) ? unmarshal(value) : value)
end

#marshal(value) ⇒ Object



21
22
23
# File 'lib/ardm/property/object.rb', line 21

def marshal(value)
  [ Marshal.dump(value) ].pack('m') unless value.nil?
end

#to_child_keyObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



31
32
33
# File 'lib/ardm/property/object.rb', line 31

def to_child_key
  self.class
end

#unmarshal(value) ⇒ Object



26
27
28
# File 'lib/ardm/property/object.rb', line 26

def unmarshal(value)
  Marshal.load(value.unpack('m').first) unless value.nil?
end