Module: AASM::Persistence::ActiveRecordPersistence::WriteState
- Defined in:
- lib/persistence/active_record_persistence.rb
Instance Method Summary collapse
-
#aasm_write_state(state) ⇒ Object
Writes
state
to the state column and persists it to the database using update_attribute (which bypasses validation).
Instance Method Details
#aasm_write_state(state) ⇒ Object
Writes state
to the state column and persists it to the database using update_attribute (which bypasses validation)
foo = Foo.find(1)
foo.aasm_current_state # => :opened
foo.close!
foo.aasm_current_state # => :closed
Foo.find(1).aasm_current_state # => :closed
NOTE: intended to be called from an event
210 211 212 213 214 215 216 217 218 219 220 |
# File 'lib/persistence/active_record_persistence.rb', line 210 def aasm_write_state(state) old_value = read_attribute(self.class.aasm_column) write_attribute(self.class.aasm_column, self.class.aasm_state_integer(state)) unless self.save write_attribute(self.class.aasm_column, old_value) return false end true end |