views:

258

answers:

1

I've installed the restful_authentication plugin. I'm Using rails 2.2.2. However, I can't seem to get past a certain error:

"undefined method acts_as_state_machine"

It doesn't matter if I call db:migrate or script/server, everything results in this same error.

Any ideas?

+1  A: 

If you use --stateful or --aasm when you run the generator, it enables acts_as_state_machine support. If that is behavior you want, try installing aasm from the above github link and see if that resolves your issue.

Gordon Wilson
I did use --stateful in generating. The link you provided was what was needed.
Daniel