Installation
Add to your application's Gemfile:
gem 'rails_workflow', '0.3.1'And then execute:
$ bundle installAdd to your config/application.rb
require 'rails_workflow'and mount it to /workflow routes:
Rails.application.routes.draw do
  ...
  mount RailsWorkflow::Engine => '/workflow', as: 'workflow'
  ...
endGenerate all models:
$ rails generate rails_workflow:install
$ bundle exec rake db:migratePlease check that your gemfile contains 'bootstrap-rails-engine', 'devise', 'will_paginate', 'sidekiq', 'slim-rails', 'inherited_resources', 'jquery-rails', 'jquery-ui-rails', 'draper'. Later I will remove some of that dependencies. I will provide installation tutorial shortly.