Method: MongoModel::DocumentExtensions::Persistence#save!
- Defined in:
- lib/mongomodel/document/persistence.rb
#save! ⇒ Object
Save the document to the database. Raises a DocumentNotSaved exception if it fails.
32 33 34 |
# File 'lib/mongomodel/document/persistence.rb', line 32 def save!(*) create_or_update || raise(DocumentNotSaved) end |