vote up 9 vote down star
4

I'm looking to implement a state machine to manage a user moving through a series of steps over an extended period of time (weeks) with emails and then they interact with the app. I've looked at a couple of AASM plugins and forks (it seems like this plugin space has become a bit chaotic) and am curious what people would recommend.

I saw the automatic AASM by hashrocket, that transitions states using cron, and from the title it looks like it might fit the bill but there doesn't appear to be any documentation anywhere and it looks more like a skeleton app than a plugin.

flag

9 Answers

vote up 8 vote down check

The RailsEnvy podcast talked about Alter Ego, a state machine implementation that sounds and looks pretty slick and it would be worth a look.

"AlterEgo is a Ruby implementation of the State pattern as described by the Gang of Four. It differs from other Ruby state machine libraries in that it focuses on providing polymorphic behavior based on object state. In effect, it makes it easy to give an object different “personalities” depending on the state it is in."

link|flag
vote up 4 vote down

I'm a big fan of state machines and have used the acts_as_state_machine plugin with good results. It's fairly well documented (in the "Practical Rails Plugins" book, for instance) and general purpose enough that you should be able to roll your own solution with it.

link|flag
Do you use the plugin or the gem? Where are you getting it? – srboisvert Dec 8 '08 at 15:46
The AASM gem you have already is a rewrite that replaces acts_as_state_machine, I believe. – Otto Dec 8 '08 at 17:18
+1 for aasm, I've used it on many projects and it has worked extremely well – paulthenerd Oct 13 at 16:57
vote up 2 vote down

I am looking into Alter Ego. Found this tutorial from François Beausoleil as well.

link|flag
vote up 1 vote down

I have heard really good things about Ragel, but I haven't used it yet. So I don't know if it would be a good fir for your project, but it might be worth checking out

http://www.complang.org/ragel/

link|flag
vote up 1 vote down

Maybe this is an overshoot, but there's a rails integrable bpm (workflow) engine called openwferu:

http://openwferu.rubyforge.org/

Here's the author on how to implement a state machine with it:

http://jmettraux.wordpress.com/2007/12/03/state-machine/

link|flag
vote up 1 vote down

When we set up time-based state transitions, we basically used AASM and a cron job. You should be able to set up an event called something like "auto_advance" that has each of the possible transitions with the relevant conditions, and then your cron job and script/runner a script like this:

 MyModel.find(:all).each do |record|
   record.auto_advance!
 end
link|flag
vote up 1 vote down

There's a great article in Rails Magazine Volume 3 on workflow solutions using acts_as_state_machine.

link|flag
vote up 0 vote down

Here you have a state pattern implementation for ActiveRecord

link|flag
vote up 0 vote down

I have found the State Machine Compiler to be very useful for creating state machines. It supports Ruby and many other languages.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.