Method: CouchObject::Persistable::HasManyRelation#delete
- Defined in:
- lib/couch_object/persistable/has_many_relations_array.rb
#delete(object_to_delete) ⇒ Object
65 66 67 68 69 70 |
# File 'lib/couch_object/persistable/has_many_relations_array.rb', line 65 def delete(object_to_delete) remove(object_to_delete) # Issue a delete statement for the object object_to_delete.send(:delete) end |