Class: MongoDoc::Collection
- Includes:
- Criteria
- Defined in:
- lib/mongo_doc/collection.rb
Instance Attribute Summary collapse
-
#_collection ⇒ Object
Returns the value of attribute _collection.
Instance Method Summary collapse
- #find(query = {}, options = {}) ⇒ Object
- #find_one(spec_or_object_id = nil, options = {}) ⇒ Object
-
#initialize(name) ⇒ Collection
constructor
A new instance of Collection.
- #insert(doc_or_docs, options = {}) ⇒ Object (also: #<<)
- #save(doc, options = {}) ⇒ Object
- #update(spec, doc, options = {}) ⇒ Object
Methods included from Criteria
Constructor Details
#initialize(name) ⇒ Collection
Returns a new instance of Collection.
32 33 34 |
# File 'lib/mongo_doc/collection.rb', line 32 def initialize(name) self._collection = self.class.mongo_collection(name) end |
Instance Attribute Details
#_collection ⇒ Object
Returns the value of attribute _collection.
6 7 8 |
# File 'lib/mongo_doc/collection.rb', line 6 def _collection @_collection end |
Instance Method Details
#find(query = {}, options = {}) ⇒ Object
36 37 38 39 40 41 42 43 44 |
# File 'lib/mongo_doc/collection.rb', line 36 def find(query = {}, = {}) cursor = wrapped_cursor(query, ) if block_given? yield cursor cursor.close else cursor end end |
#find_one(spec_or_object_id = nil, options = {}) ⇒ Object
46 47 48 |
# File 'lib/mongo_doc/collection.rb', line 46 def find_one(spec_or_object_id = nil, = {}) MongoDoc::BSON.decode(_collection.find_one(spec_or_object_id, )) end |
#insert(doc_or_docs, options = {}) ⇒ Object Also known as: <<
50 51 52 |
# File 'lib/mongo_doc/collection.rb', line 50 def insert(doc_or_docs, = {}) _collection.insert(doc_or_docs.to_bson, ) end |
#save(doc, options = {}) ⇒ Object
55 56 57 |
# File 'lib/mongo_doc/collection.rb', line 55 def save(doc, = {}) _collection.save(doc.to_bson, ) end |
#update(spec, doc, options = {}) ⇒ Object
59 60 61 62 |
# File 'lib/mongo_doc/collection.rb', line 59 def update(spec, doc, = {}) _collection.update(spec, doc.to_bson, ) (last_error || {})['updatedExisting'] || false end |