Any reccomendations for implementing a user-defined workflow in Ruby?

Posted by midas06 on Stack Overflow See other posts from Stack Overflow or by midas06
Published on 2010-04-19T05:32:08Z Indexed on 2010/04/19 5:33 UTC
Read the original article Hit count: 233

Filed under:
|
|

I'm interested in creating a system where the user can define the steps in a workflow. Is there a gem that already handles this? I thought about one of the state machine gems, but they all seem to be for pre-defined states. I've been thinking maybe i can use state machine for the individual step types... An email step could have a few states [New, Assigned, Done], and the workflow could just be lists of these stateful steps. Are there other solutions out there?

© Stack Overflow or respective owner

Related posts about ruby-on-rails

Related posts about ruby