-
Couldn't load subscription status.
- Fork 39
Installation
Maxim Madzhuga edited this page Nov 5, 2016
·
3 revisions
Add to your Gemfile:
gem 'rails_workflow'Then run bundle install
Add to your config/application.rb
require 'rails_workflow'Mount engine:
Rails.application.routes.draw do
...
mount RailsWorkflow::Engine => '/workflow', as: 'workflow'
...
endNext, you need to run generators:
$ rails generate rails_workflow:install
$ bundle exec rake db:migrateIt will generate necessary models.