Method: Mongo::Model::Crud#destroy

Defined in:
lib/mongo_db/model/crud.rb

#destroy(opts = {}) ⇒ Object



12
13
14
15
16
# File 'lib/mongo_db/model/crud.rb', line 12

def destroy opts = {}
  with_collection opts do |collection, opts|
    collection.destroy self, opts
  end
end