Module: Mongoid::Persistable::Updatable
- Included in:
- Mongoid::Persistable
- Defined in:
- lib/mongoid/persistable/updatable.rb
Overview
Defines behavior for persistence operations that update existing documents.
Instance Method Summary collapse
-
#update(attributes = {}) ⇒ true | false
(also: #update_attributes)
Update the document attributes in the database.
-
#update!(attributes = {}) ⇒ true | false
(also: #update_attributes!)
Update the document attributes in the database and raise an error if validation failed.
-
#update_attribute(name, value) ⇒ true | false
Update a single attribute and persist the entire document.
Instance Method Details
#update(attributes = {}) ⇒ true | false Also known as: update_attributes
Update the document attributes in the database.
40 41 42 43 |
# File 'lib/mongoid/persistable/updatable.rb', line 40 def update(attributes = {}) assign_attributes(attributes) save end |
#update!(attributes = {}) ⇒ true | false Also known as: update_attributes!
Update the document attributes in the database and raise an error if validation failed.
58 59 60 61 62 63 64 65 |
# File 'lib/mongoid/persistable/updatable.rb', line 58 def update!(attributes = {}) result = update_attributes(attributes) unless result fail_due_to_validation! unless errors.empty? fail_due_to_callback!(:update_attributes!) end result end |
#update_attribute(name, value) ⇒ true | false
Update a single attribute and persist the entire document. This skips validation but fires the callbacks.
24 25 26 27 28 29 30 |
# File 'lib/mongoid/persistable/updatable.rb', line 24 def update_attribute(name, value) as_writable_attribute!(name, value) do |access| normalized = name.to_s process_attribute(normalized, value) save(validate: false) end end |