Simple, self-aware, requirements based workflow manager based on Redis/Resque.
Reqflow lets you define workflows based on actions that define their own prerequisites. Actions whose prerequisites are met can be queued in parallel with one another.
Add this line to your application's Gemfile:
gem 'reqflow'
And then execute:
$ bundle
Or install it yourself as:
$ gem install reqflow
Please refer to spec/config/workflows/spec_workflow.yml
and spec/impl/spec_workflow.rb
for examples of how to define and configure a workflow implementation.
- Fork it ( https://github.com/mbklein/reqflow/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request