Class: CouchPotato::Persistence::SimpleProperty
- Inherits:
-
Object
- Object
- CouchPotato::Persistence::SimpleProperty
- Defined in:
- lib/couch_potato/persistence/simple_property.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#name ⇒ Object
Returns the value of attribute name.
-
#type ⇒ Object
Returns the value of attribute type.
Instance Method Summary collapse
- #build(object, json) ⇒ Object
- #dirty?(object) ⇒ Boolean
-
#initialize(owner_clazz, name, options = {}) ⇒ SimpleProperty
constructor
A new instance of SimpleProperty.
- #serialize(json, object) ⇒ Object (also: #value)
Constructor Details
#initialize(owner_clazz, name, options = {}) ⇒ SimpleProperty
Returns a new instance of SimpleProperty.
6 7 8 9 10 11 12 |
# File 'lib/couch_potato/persistence/simple_property.rb', line 6 def initialize(owner_clazz, name, = {}) self.name = name self.type = [:type] @type_caster = TypeCaster.new define_accessors accessors_module_for(owner_clazz), name, end |
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name.
4 5 6 |
# File 'lib/couch_potato/persistence/simple_property.rb', line 4 def name @name end |
#type ⇒ Object
Returns the value of attribute type.
4 5 6 |
# File 'lib/couch_potato/persistence/simple_property.rb', line 4 def type @type end |
Instance Method Details
#build(object, json) ⇒ Object
14 15 16 17 |
# File 'lib/couch_potato/persistence/simple_property.rb', line 14 def build(object, json) value = json[name.to_s].nil? ? json[name.to_sym] : json[name.to_s] object.send "#{name}=", value end |
#dirty?(object) ⇒ Boolean
19 20 21 |
# File 'lib/couch_potato/persistence/simple_property.rb', line 19 def dirty?(object) object.send("#{name}_changed?") end |
#serialize(json, object) ⇒ Object Also known as: value
23 24 25 |
# File 'lib/couch_potato/persistence/simple_property.rb', line 23 def serialize(json, object) json[name] = object.send name end |