0.0
No commit activity in last 3 years
No release in over 3 years
This gem provides a workflow construction kit for rails apps. Users can arrange workflow bricks in a sequence for each workflow and add parameters. When a workflow is executed, each workflow brick executes a callback method written in ruby and passes the parameters.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

>= 3.2
 Project Readme

WorkflowKit Build Status Dependency Status


2016-01-25: This gem has been abandoned and moved to your_platform.


This ruby on rails gem provides a workflow construction kit for rails apps. Users can arrange workflow bricks in a sequence for each workflow and add parameters. When a workflow is executed, each workflow brick executes a callback method written in ruby and passes the parameters.

Demo

You might want to have a look at this demo app at heroku.

The code of this demo app can be found here.

Alpha State

This gem is currently in alpha state. It's not production ready, yet.

Installation

Add this line to your application's Gemfile:

gem 'workflow_kit'

And then execute:

$ bundle

Or install it yourself as:

$ gem install workflow_kit

Usage

Preparation

  • Include in routes
# config/routes.rb
Rails.application.routes.draw do
  mount WorkflowKit::Engine => "/workflow_kit"
end
  • Migrate Database
rake workflow_kit:install:migrations
rake db:migrate

TODO: Write usage instructions here

Further Reading

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request