Tagged Questions
The acts-as-state-machine tag has no wiki summary.
3
votes
4answers
1k views
Persisting the state column on transition using rubyist-aasm (acts as state machine)
What is the best way to persist the object's state to the database on a transition using aasm? I had thought that this would happen automatically but this doesn't seem to be the case.
(Edit: when I ...
1
vote
1answer
169 views
Using acts_as_state_machine transition methods without saving
I want to be able to utilize the acts_as_state_machine transition methods which are auto-generated (e.g. event!).. but I don't want it to save right away. I'm updating the state as part of another set ...
0
votes
1answer
22 views
How do I access old and new states in an aasm callback in rails?
I am new to both Ruby and Rails.
I'm using AASM to put state machine behavior into a model class. Depending on the old and new states I want to handle the state change event in different ways.
How ...
0
votes
1answer
55 views
rails acts_as_state_machine no method error
I am getting this error while trying to follow a tutorial over here
http://jimneath.org/2008/06/03/converting-videos-with-rails-converting-the-video.html
I have the table called videos with field ...
0
votes
1answer
73 views
Acts as state machine loop
Is there any problem with adding a loop in the state machine for the rails plugin acts_as_state_machine?
I'm trying to do something like this and is not working:
state :not_sent
state :sent
event ...
0
votes
1answer
157 views
AASM: Verifying which object is moving a state forward
I'm using AASM from http://elitists.textdriven.com/svn/plugins/acts%5Fas%5Fstate%5Fmachine/trunk
In my example, I have a Karate dojo rails site. On the site, Teachers can manage the classes they ...