1
0
Fork 0
mirror of https://github.com/aasm/aasm synced 2023-03-27 23:22:41 -04:00

Fix job.fire to job.aasm.fire in README

This commit is contained in:
Peter Glerup Ericson 2017-09-07 13:43:01 +02:00 committed by Anil Kumar Maurya
parent f9048b7496
commit 0c513e9642

View file

@ -691,8 +691,8 @@ job.run # not saved
job.run! # saved
# or
job.fire(:run) # not saved
job.fire!(:run) # saved
job.aasm.fire(:run) # not saved
job.aasm.fire!(:run) # saved
```
Saving includes running all validations on the `Job` class. If