Hi Guys,
I really enjoy state_machine so far. I'm currently creating a
multistep form as seen in Railscast 217
http://railscasts.com/episodes/217-multistep-forms
Ryan Bates creates a whole bunch of instance methods that should
rather be handled by a state machine. But it's state should not be
saved in the database, since it's just handling new forms.
Is it possible to include a state machine on my model that does not
try to save the state automatically and just uses an instance variable
on the unsaved record?
Rainer