Class: SimplyStored::Couch::AssociationProperty
- Inherits:
-
Object
- Object
- SimplyStored::Couch::AssociationProperty
show all
- Defined in:
- lib/simply_stored/couch/association_property.rb
Instance Attribute Summary collapse
Instance Method Summary
collapse
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name.
4
5
6
|
# File 'lib/simply_stored/couch/association_property.rb', line 4
def name
@name
end
|
#options ⇒ Object
Returns the value of attribute options.
4
5
6
|
# File 'lib/simply_stored/couch/association_property.rb', line 4
def options
@options
end
|
Instance Method Details
#association? ⇒ Boolean
21
22
23
|
# File 'lib/simply_stored/couch/association_property.rb', line 21
def association?
true
end
|
#build(object, json) ⇒ Object
10
11
|
# File 'lib/simply_stored/couch/association_property.rb', line 10
def build(object, json)
end
|
#dirty?(object) ⇒ Boolean
6
7
8
|
# File 'lib/simply_stored/couch/association_property.rb', line 6
def dirty?(object)
false
end
|
#serialize(json, object) ⇒ Object
Also known as:
value
13
14
|
# File 'lib/simply_stored/couch/association_property.rb', line 13
def serialize(json, object)
end
|
#supports_dirty? ⇒ Boolean
17
18
19
|
# File 'lib/simply_stored/couch/association_property.rb', line 17
def supports_dirty?
false
end
|