WorkflowKit Demo App

This test app demonstrates the ruby on rails gem workflow_kit.

You might start executing a workflow. Notice how this workflow adds some log messages below. Next, you could edit a workflow and see how that works.

Please note, this gem is still in an alpha state and not ready for use in production, yet.

Workflows

<% @workflows.each do |workflow| %> <% end %>
Name Description
<%= workflow.name %> <%= workflow.description %> <%= link_to 'Show', workflow %> <%= link_to 'Edit', edit_workflow_path(workflow) %> <%= link_to 'Destroy', workflow, method: :delete, data: { confirm: 'Are you sure?' } %> <%= link_to 'Execute', execute_workflow_path( workflow ), method: :put %>

<%= link_to 'New Workflow', new_workflow_path %>

Logged Messages