Module: Mongoid::Persistable::Updatable
- Included in:
- Mongoid::Persistable
- Defined in:
- lib/mongoid/persistable/updatable.rb
Overview
Defines behaviour 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.
50 51 52 53 |
# File 'lib/mongoid/persistable/updatable.rb', line 50 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.
70 71 72 73 74 75 76 77 |
# File 'lib/mongoid/persistable/updatable.rb', line 70 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.
26 27 28 29 30 31 32 33 34 35 36 37 38 |
# File 'lib/mongoid/persistable/updatable.rb', line 26 def update_attribute(name, value) normalized = name.to_s unless attribute_writable?(normalized) raise Errors::ReadonlyAttribute.new(normalized, value) end setter = "#{normalized}=" if respond_to?(setter) send(setter, value) else write_attribute(database_field_name(normalized), value) end save(validate: false) end |