We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Add to your Gemfile:
gem 'rails_workflow'
Then run bundle install
bundle install
Add to your config/application.rb
require 'rails_workflow'
Mount engine:
Rails.application.routes.draw do ... mount RailsWorkflow::Engine => '/workflow', as: 'workflow' ... end
Next, you need to run generators:
$ rails generate rails_workflow:install $ bundle exec rake db:migrate
It will generate necessary models.