├── .editorconfig ├── .gitattributes ├── .gitignore ├── .rubocop.yml ├── .ruby-version ├── .vscode └── launch.json ├── Gemfile ├── Gemfile.lock ├── MIT-LICENSE ├── README.md ├── README.zh-CN.md ├── Rakefile ├── app ├── controllers │ └── .keep ├── helpers │ └── .keep ├── mailers │ └── .keep ├── models │ ├── .keep │ └── flow_core │ │ ├── application_record.rb │ │ ├── arc.rb │ │ ├── arc_guard.rb │ │ ├── branch.rb │ │ ├── end_place.rb │ │ ├── instance.rb │ │ ├── pipeline.rb │ │ ├── place.rb │ │ ├── start_place.rb │ │ ├── step.rb │ │ ├── steps │ │ ├── end.rb │ │ ├── exclusive_choice.rb │ │ ├── parallel_split.rb │ │ ├── redirection.rb │ │ └── task.rb │ │ ├── task.rb │ │ ├── token.rb │ │ ├── transition.rb │ │ ├── transition_trigger.rb │ │ └── workflow.rb └── views │ └── .keep ├── bin └── rails ├── config └── routes.rb ├── db └── migrate │ ├── 20200130200532_create_workflow_tables.rb │ └── 20200130200533_create_pipeline_tables.rb ├── flow_core.gemspec ├── guides ├── assets │ ├── architecture.en.svg │ ├── architecture.zh-CN.svg │ ├── instance_lifecycle.en.svg │ ├── instance_lifecycle.zh-CN.svg │ ├── pipeline_step_end.png │ ├── pipeline_step_end_compiled.png │ ├── pipeline_step_exclusive_choice.png │ ├── pipeline_step_exclusive_choice_compiled.png │ ├── pipeline_step_parallel_split.png │ ├── pipeline_step_parallel_split_compiled.png │ ├── pipeline_step_redirection.png │ ├── pipeline_step_redirection_compiled.png │ ├── pipeline_step_redirection_note.png │ ├── pipeline_step_task.png │ └── pipeline_step_task_compiled.png ├── how_dummy_built.zh-CN.md ├── how_dummy_built_en-US.md ├── internals.zh-CN.md ├── pipeline.zh-CN.md ├── pipeline_EN.md ├── source │ ├── architecture.en.drawio │ ├── architecture.zh-CN.drawio │ ├── instance_lifecycle.en.drawio │ └── instance_lifecycle.zh-CN.drawio ├── tutorials.zh-CN.md └── tutorials_EN.md ├── lib ├── flow_core.rb ├── flow_core │ ├── arc_guardable.rb │ ├── definition.rb │ ├── definition │ │ ├── guard.rb │ │ ├── net.rb │ │ ├── place.rb │ │ ├── transition.rb │ │ └── trigger.rb │ ├── engine.rb │ ├── errors.rb │ ├── locale │ │ └── en.yml │ ├── task_callbacks.rb │ ├── task_executable.rb │ ├── version.rb │ └── violations.rb └── tasks │ └── flow_core_tasks.rake └── test ├── dummy ├── Rakefile ├── app │ ├── assets │ │ ├── config │ │ │ └── manifest.js │ │ ├── images │ │ │ └── .keep │ │ ├── javascripts │ │ │ └── application.es6 │ │ └── stylesheets │ │ │ ├── application.scss │ │ │ └── selectize │ │ │ ├── plugins │ │ │ ├── drag_drop.scss │ │ │ ├── dropdown_header.scss │ │ │ ├── optgroup_columns.scss │ │ │ └── remove_button.scss │ │ │ ├── selectize.bootstrap.scss │ │ │ └── selectize.scss │ ├── channels │ │ └── application_cable │ │ │ ├── channel.rb │ │ │ └── connection.rb │ ├── controllers │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── fields │ │ │ ├── application_controller.rb │ │ │ ├── choices_controller.rb │ │ │ ├── data_source_options_controller.rb │ │ │ ├── options_controller.rb │ │ │ └── validations_controller.rb │ │ ├── forms │ │ │ ├── application_controller.rb │ │ │ ├── fields_controller.rb │ │ │ ├── overrides_controller.rb │ │ │ └── previews_controller.rb │ │ ├── forms_controller.rb │ │ ├── home_controller.rb │ │ ├── human_tasks_controller.rb │ │ ├── instances │ │ │ ├── application_controller.rb │ │ │ └── tasks_controller.rb │ │ ├── instances_controller.rb │ │ ├── nested_forms │ │ │ ├── application_controller.rb │ │ │ └── fields_controller.rb │ │ ├── notifications_controller.rb │ │ ├── pipelines │ │ │ ├── application_controller.rb │ │ │ ├── branches │ │ │ │ ├── application_controller.rb │ │ │ │ ├── arc_guards_controller.rb │ │ │ │ └── steps_controller.rb │ │ │ ├── branches_controller.rb │ │ │ ├── steps │ │ │ │ ├── application_controller.rb │ │ │ │ ├── branches_controller.rb │ │ │ │ ├── redirections_controller.rb │ │ │ │ └── transition_triggers_controller.rb │ │ │ └── steps_controller.rb │ │ ├── pipelines_controller.rb │ │ ├── session_controller.rb │ │ ├── users_controller.rb │ │ ├── workflows │ │ │ ├── application_controller.rb │ │ │ ├── arcs_controller.rb │ │ │ ├── instances_controller.rb │ │ │ ├── transitions │ │ │ │ ├── application_controller.rb │ │ │ │ └── triggers_controller.rb │ │ │ └── transitions_controller.rb │ │ └── workflows_controller.rb │ ├── helpers │ │ ├── application_helper.rb │ │ ├── breadcrumbs_helper.rb │ │ ├── fields_helper.rb │ │ ├── forms_helper.rb │ │ ├── navigation_helper.rb │ │ └── workflows_helper.rb │ ├── javascript │ │ └── packs │ │ │ └── application.js │ ├── jobs │ │ ├── application_job.rb │ │ └── timer_task_job.rb │ ├── mailers │ │ └── application_mailer.rb │ ├── models │ │ ├── application_record.rb │ │ ├── concerns │ │ │ ├── .keep │ │ │ └── form_kit │ │ │ │ ├── options │ │ │ │ └── data_source.rb │ │ │ │ └── validations │ │ │ │ ├── acceptance.rb │ │ │ │ ├── confirmation.rb │ │ │ │ ├── exclusion.rb │ │ │ │ ├── format.rb │ │ │ │ ├── inclusion.rb │ │ │ │ ├── length.rb │ │ │ │ ├── numericality.rb │ │ │ │ ├── presence.rb │ │ │ │ └── uniqueness.rb │ │ ├── flow_kit │ │ │ ├── arc_guards.rb │ │ │ ├── arc_guards │ │ │ │ ├── ruby_script.rb │ │ │ │ └── ruby_script │ │ │ │ │ └── configuration.rb │ │ │ ├── assignee_candidate.rb │ │ │ ├── business_instance.rb │ │ │ ├── business_pipeline.rb │ │ │ ├── business_workflow.rb │ │ │ ├── human_task.rb │ │ │ ├── steps.rb │ │ │ ├── transition_triggers.rb │ │ │ └── transition_triggers │ │ │ │ ├── human_task.rb │ │ │ │ ├── human_task │ │ │ │ └── configuration.rb │ │ │ │ ├── timer.rb │ │ │ │ └── timer │ │ │ │ └── configuration.rb │ │ ├── form_kit │ │ │ ├── application_record.rb │ │ │ ├── choice.rb │ │ │ ├── data_source.rb │ │ │ ├── data_sources.rb │ │ │ ├── data_sources │ │ │ │ └── empty.rb │ │ │ ├── embeds │ │ │ │ ├── date_range.rb │ │ │ │ ├── datetime_range.rb │ │ │ │ ├── decimal_range.rb │ │ │ │ └── integer_range.rb │ │ │ ├── field.rb │ │ │ ├── field │ │ │ │ ├── fakable.rb │ │ │ │ └── helper.rb │ │ │ ├── field_options.rb │ │ │ ├── field_override.rb │ │ │ ├── fields.rb │ │ │ ├── fields │ │ │ │ ├── boolean.rb │ │ │ │ ├── boolean │ │ │ │ │ └── validations.rb │ │ │ │ ├── choice.rb │ │ │ │ ├── choice │ │ │ │ │ ├── fakable.rb │ │ │ │ │ └── validations.rb │ │ │ │ ├── date.rb │ │ │ │ ├── date │ │ │ │ │ ├── options.rb │ │ │ │ │ └── validations.rb │ │ │ │ ├── date_range.rb │ │ │ │ ├── date_range │ │ │ │ │ ├── options.rb │ │ │ │ │ └── validations.rb │ │ │ │ ├── datetime.rb │ │ │ │ ├── datetime │ │ │ │ │ ├── options.rb │ │ │ │ │ └── validations.rb │ │ │ │ ├── datetime_range.rb │ │ │ │ ├── datetime_range │ │ │ │ │ ├── options.rb │ │ │ │ │ └── validations.rb │ │ │ │ ├── decimal.rb │ │ │ │ ├── decimal │ │ │ │ │ ├── options.rb │ │ │ │ │ └── validations.rb │ │ │ │ ├── decimal_range.rb │ │ │ │ ├── decimal_range │ │ │ │ │ ├── options.rb │ │ │ │ │ └── validations.rb │ │ │ │ ├── integer.rb │ │ │ │ ├── integer │ │ │ │ │ ├── options.rb │ │ │ │ │ └── validations.rb │ │ │ │ ├── integer_range.rb │ │ │ │ ├── integer_range │ │ │ │ │ ├── options.rb │ │ │ │ │ └── validations.rb │ │ │ │ ├── multiple_choice.rb │ │ │ │ ├── multiple_choice │ │ │ │ │ ├── fakable.rb │ │ │ │ │ └── validations.rb │ │ │ │ ├── multiple_nested_form.rb │ │ │ │ ├── multiple_nested_form │ │ │ │ │ └── validations.rb │ │ │ │ ├── multiple_resource.rb │ │ │ │ ├── multiple_resource │ │ │ │ │ ├── options.rb │ │ │ │ │ └── validations.rb │ │ │ │ ├── multiple_resource_select.rb │ │ │ │ ├── multiple_resource_select │ │ │ │ │ ├── options.rb │ │ │ │ │ └── validations.rb │ │ │ │ ├── multiple_select.rb │ │ │ │ ├── multiple_select │ │ │ │ │ ├── fakable.rb │ │ │ │ │ ├── options.rb │ │ │ │ │ └── validations.rb │ │ │ │ ├── nested_form.rb │ │ │ │ ├── nested_form │ │ │ │ │ ├── options.rb │ │ │ │ │ └── validations.rb │ │ │ │ ├── resource.rb │ │ │ │ ├── resource │ │ │ │ │ ├── options.rb │ │ │ │ │ └── validations.rb │ │ │ │ ├── resource_select.rb │ │ │ │ ├── resource_select │ │ │ │ │ ├── options.rb │ │ │ │ │ └── validations.rb │ │ │ │ ├── select.rb │ │ │ │ ├── select │ │ │ │ │ ├── fakable.rb │ │ │ │ │ ├── options.rb │ │ │ │ │ └── validations.rb │ │ │ │ ├── text.rb │ │ │ │ └── text │ │ │ │ │ ├── options.rb │ │ │ │ │ └── validations.rb │ │ │ ├── form.rb │ │ │ ├── form │ │ │ │ └── fakable.rb │ │ │ ├── form_override.rb │ │ │ ├── metal_form.rb │ │ │ ├── nested_form.rb │ │ │ ├── non_configurable.rb │ │ │ └── virtual_model.rb │ │ ├── notification.rb │ │ └── user.rb │ ├── overrides │ │ ├── action_view │ │ │ └── helpers │ │ │ │ └── form_builder_override.rb │ │ └── models │ │ │ └── flow_core │ │ │ ├── branch_override.rb │ │ │ ├── pipeline_override.rb │ │ │ ├── step_override.rb │ │ │ ├── steps │ │ │ └── end_override.rb │ │ │ └── workflow_override.rb │ ├── presenters │ │ ├── application_presenter.rb │ │ ├── concerns │ │ │ └── form_kit │ │ │ │ └── fields │ │ │ │ └── presenter_for_number_field.rb │ │ └── form_kit │ │ │ ├── composite_field_presenter.rb │ │ │ ├── field_presenter.rb │ │ │ └── fields │ │ │ ├── boolean_presenter.rb │ │ │ ├── choice_presenter.rb │ │ │ ├── date_presenter.rb │ │ │ ├── date_range_presenter.rb │ │ │ ├── datetime_presenter.rb │ │ │ ├── datetime_range_presenter.rb │ │ │ ├── decimal_presenter.rb │ │ │ ├── decimal_range_presenter.rb │ │ │ ├── integer_presenter.rb │ │ │ ├── integer_range_presenter.rb │ │ │ ├── member_presenter.rb │ │ │ ├── multiple_choice_presenter.rb │ │ │ ├── multiple_nested_form_presenter.rb │ │ │ ├── multiple_resource_presenter.rb │ │ │ ├── multiple_resource_select_presenter.rb │ │ │ ├── multiple_select_presenter.rb │ │ │ ├── nested_form_presenter.rb │ │ │ ├── resource_presenter.rb │ │ │ ├── resource_select_presenter.rb │ │ │ ├── select_presenter.rb │ │ │ └── text_presenter.rb │ └── views │ │ ├── _flow_kit │ │ ├── arc_guards │ │ │ └── _ruby_script.html.erb │ │ └── transition_triggers │ │ │ ├── _human_task.html.erb │ │ │ └── _timer.html.erb │ │ ├── _form_core │ │ ├── _nested_form.html.erb │ │ ├── data_source_options │ │ │ ├── _dictionary.html.erb │ │ │ └── _empty.html.erb │ │ ├── field_options │ │ │ ├── _date.html.erb │ │ │ ├── _date_range.html.erb │ │ │ ├── _datetime.html.erb │ │ │ ├── _datetime_range.html.erb │ │ │ ├── _decimal.html.erb │ │ │ ├── _decimal_range.html.erb │ │ │ ├── _integer.html.erb │ │ │ ├── _integer_range.html.erb │ │ │ ├── _multiple_resource.html.erb │ │ │ ├── _multiple_resource_select.html.erb │ │ │ ├── _multiple_select.html.erb │ │ │ ├── _resource.html.erb │ │ │ ├── _resource_select.html.erb │ │ │ ├── _select.html.erb │ │ │ └── _text.html.erb │ │ ├── fields │ │ │ ├── _boolean.html.erb │ │ │ ├── _choice.html.erb │ │ │ ├── _date.html.erb │ │ │ ├── _date_range.html.erb │ │ │ ├── _datetime.html.erb │ │ │ ├── _datetime_range.html.erb │ │ │ ├── _decimal.html.erb │ │ │ ├── _decimal_range.html.erb │ │ │ ├── _integer.html.erb │ │ │ ├── _integer_range.html.erb │ │ │ ├── _multiple_choice.html.erb │ │ │ ├── _multiple_nested_form.html.erb │ │ │ ├── _multiple_resource.html.erb │ │ │ ├── _multiple_resource_select.html.erb │ │ │ ├── _multiple_select.html.erb │ │ │ ├── _nested_form.html.erb │ │ │ ├── _resource.html.erb │ │ │ ├── _resource_select.html.erb │ │ │ ├── _select.html.erb │ │ │ └── _text.html.erb │ │ ├── preview │ │ │ ├── _form.html.erb │ │ │ └── _nested_form.html.erb │ │ ├── render │ │ │ └── _form.html.erb │ │ └── validations │ │ │ ├── _acceptance.html.erb │ │ │ ├── _confirmation.html.erb │ │ │ ├── _exclusion.html.erb │ │ │ ├── _format.html.erb │ │ │ ├── _inclusion.html.erb │ │ │ ├── _length.html.erb │ │ │ ├── _numericality.html.erb │ │ │ ├── _presence.html.erb │ │ │ └── _uniqueness.html.erb │ │ ├── fields │ │ ├── choices │ │ │ ├── _form.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ └── new.html.erb │ │ ├── data_source_options │ │ │ ├── _form.html.erb │ │ │ └── edit.html.erb │ │ ├── options │ │ │ ├── _form.html.erb │ │ │ └── edit.html.erb │ │ └── validations │ │ │ ├── _form.html.erb │ │ │ └── edit.html.erb │ │ ├── forms │ │ ├── _form.html.erb │ │ ├── _tabs.html.erb │ │ ├── edit.html.erb │ │ ├── fields │ │ │ ├── _form.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ └── new.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ ├── overrides │ │ │ ├── _form.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ └── new.html.erb │ │ └── previews │ │ │ ├── create.html.erb │ │ │ └── show.html.erb │ │ ├── home │ │ └── index.html.erb │ │ ├── human_tasks │ │ ├── _form.html.erb │ │ └── show.html.erb │ │ ├── instances │ │ ├── index.html.erb │ │ └── show.html.erb │ │ ├── kaminari │ │ ├── _first_page.html.erb │ │ ├── _gap.html.erb │ │ ├── _last_page.html.erb │ │ ├── _next_page.html.erb │ │ ├── _page.html.erb │ │ ├── _paginator.html.erb │ │ └── _prev_page.html.erb │ │ ├── layouts │ │ ├── _alert.html.erb │ │ ├── _breadcrumb.html.erb │ │ ├── _footer.html.erb │ │ ├── _header.html.erb │ │ ├── application.html.erb │ │ ├── mailer.html.erb │ │ └── mailer.text.erb │ │ ├── nested_forms │ │ └── fields │ │ │ ├── _form.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ └── new.html.erb │ │ ├── notifications │ │ └── index.html.erb │ │ ├── pipelines │ │ ├── _form.html.erb │ │ ├── branches │ │ │ ├── _form.html.erb │ │ │ ├── arc_guards │ │ │ │ ├── _form.html.erb │ │ │ │ ├── edit.html.erb │ │ │ │ └── new.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── show.html.erb │ │ │ └── steps │ │ │ │ ├── _form.html.erb │ │ │ │ └── new.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── steps │ │ │ ├── _form.html.erb │ │ │ ├── branches │ │ │ ├── _form.html.erb │ │ │ └── new.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── new.html.erb │ │ │ ├── redirections │ │ │ ├── _form.html.erb │ │ │ └── edit.html.erb │ │ │ └── transition_triggers │ │ │ ├── _form.html.erb │ │ │ ├── edit.html.erb │ │ │ └── new.html.erb │ │ ├── users │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ └── new.html.erb │ │ └── workflows │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── instances │ │ ├── _form.html.erb │ │ └── new.html.erb │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── transitions │ │ ├── _form.html.erb │ │ ├── show.html.erb │ │ └── triggers │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ └── new.html.erb ├── bin │ ├── rails │ ├── rake │ └── setup ├── config.ru ├── config │ ├── application.rb │ ├── boot.rb │ ├── cable.yml │ ├── database.yml │ ├── database.yml.pg.example │ ├── database.yml.sqlite.example │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── action_view.rb │ │ ├── application_controller_renderer.rb │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── content_security_policy.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ ├── en.yml │ │ ├── form_kit.en.yml │ │ └── kaminari.en.yml │ ├── puma.rb │ ├── routes.rb │ ├── spring.rb │ └── storage.yml ├── db │ ├── migrate │ │ ├── 20200205175440_create_form_kit_tables.rb │ │ ├── 20200205175442_create_users.rb │ │ ├── 20200205175443_add_columns_to_flow_core_tables.rb │ │ ├── 20200205175444_create_notifications.rb │ │ ├── 20200523233221_create_human_tasks.rb │ │ └── 20200523233225_create_assignee_candidates.rb │ ├── schema.rb │ └── seeds.rb ├── lib │ ├── assets │ │ └── .keep │ ├── model_kit │ │ ├── acts_as_default_value.rb │ │ └── enum_attribute_localizable.rb │ ├── script_engine.rb │ └── serializable_model │ │ ├── acts_as_default_value.rb │ │ ├── base.rb │ │ └── enum_attribute_localizable.rb ├── log │ └── .keep ├── mruby │ ├── engine.gembox │ └── lib │ │ ├── .keep │ │ ├── core_ext.rb │ │ ├── harden.rb │ │ ├── input.rb │ │ ├── io.rb │ │ ├── output.rb │ │ └── script_kernel.rb ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ └── favicon.ico └── storage │ └── .keep ├── fixtures └── .keep ├── flow_core_test.rb ├── integration └── navigation_test.rb ├── models └── flow_core │ ├── arc_test.rb │ ├── instance_test.rb │ ├── place_test.rb │ ├── task_test.rb │ ├── token_test.rb │ ├── transition_test.rb │ └── workflow_test.rb └── test_helper.rb /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-3.3.0 2 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/README.zh-CN.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/Rakefile -------------------------------------------------------------------------------- /app/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/flow_core/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/app/models/flow_core/application_record.rb -------------------------------------------------------------------------------- /app/models/flow_core/arc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/app/models/flow_core/arc.rb -------------------------------------------------------------------------------- /app/models/flow_core/arc_guard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/app/models/flow_core/arc_guard.rb -------------------------------------------------------------------------------- /app/models/flow_core/branch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/app/models/flow_core/branch.rb -------------------------------------------------------------------------------- /app/models/flow_core/end_place.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/app/models/flow_core/end_place.rb -------------------------------------------------------------------------------- /app/models/flow_core/instance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/app/models/flow_core/instance.rb -------------------------------------------------------------------------------- /app/models/flow_core/pipeline.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/app/models/flow_core/pipeline.rb -------------------------------------------------------------------------------- /app/models/flow_core/place.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/app/models/flow_core/place.rb -------------------------------------------------------------------------------- /app/models/flow_core/start_place.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/app/models/flow_core/start_place.rb -------------------------------------------------------------------------------- /app/models/flow_core/step.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/app/models/flow_core/step.rb -------------------------------------------------------------------------------- /app/models/flow_core/steps/end.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/app/models/flow_core/steps/end.rb -------------------------------------------------------------------------------- /app/models/flow_core/steps/exclusive_choice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/app/models/flow_core/steps/exclusive_choice.rb -------------------------------------------------------------------------------- /app/models/flow_core/steps/parallel_split.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/app/models/flow_core/steps/parallel_split.rb -------------------------------------------------------------------------------- /app/models/flow_core/steps/redirection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/app/models/flow_core/steps/redirection.rb -------------------------------------------------------------------------------- /app/models/flow_core/steps/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/app/models/flow_core/steps/task.rb -------------------------------------------------------------------------------- /app/models/flow_core/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/app/models/flow_core/task.rb -------------------------------------------------------------------------------- /app/models/flow_core/token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/app/models/flow_core/token.rb -------------------------------------------------------------------------------- /app/models/flow_core/transition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/app/models/flow_core/transition.rb -------------------------------------------------------------------------------- /app/models/flow_core/transition_trigger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/app/models/flow_core/transition_trigger.rb -------------------------------------------------------------------------------- /app/models/flow_core/workflow.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/app/models/flow_core/workflow.rb -------------------------------------------------------------------------------- /app/views/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/bin/rails -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/config/routes.rb -------------------------------------------------------------------------------- /db/migrate/20200130200532_create_workflow_tables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/db/migrate/20200130200532_create_workflow_tables.rb -------------------------------------------------------------------------------- /db/migrate/20200130200533_create_pipeline_tables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/db/migrate/20200130200533_create_pipeline_tables.rb -------------------------------------------------------------------------------- /flow_core.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/flow_core.gemspec -------------------------------------------------------------------------------- /guides/assets/architecture.en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/guides/assets/architecture.en.svg -------------------------------------------------------------------------------- /guides/assets/architecture.zh-CN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/guides/assets/architecture.zh-CN.svg -------------------------------------------------------------------------------- /guides/assets/instance_lifecycle.en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/guides/assets/instance_lifecycle.en.svg -------------------------------------------------------------------------------- /guides/assets/instance_lifecycle.zh-CN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/guides/assets/instance_lifecycle.zh-CN.svg -------------------------------------------------------------------------------- /guides/assets/pipeline_step_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/guides/assets/pipeline_step_end.png -------------------------------------------------------------------------------- /guides/assets/pipeline_step_end_compiled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/guides/assets/pipeline_step_end_compiled.png -------------------------------------------------------------------------------- /guides/assets/pipeline_step_exclusive_choice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/guides/assets/pipeline_step_exclusive_choice.png -------------------------------------------------------------------------------- /guides/assets/pipeline_step_exclusive_choice_compiled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/guides/assets/pipeline_step_exclusive_choice_compiled.png -------------------------------------------------------------------------------- /guides/assets/pipeline_step_parallel_split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/guides/assets/pipeline_step_parallel_split.png -------------------------------------------------------------------------------- /guides/assets/pipeline_step_parallel_split_compiled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/guides/assets/pipeline_step_parallel_split_compiled.png -------------------------------------------------------------------------------- /guides/assets/pipeline_step_redirection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/guides/assets/pipeline_step_redirection.png -------------------------------------------------------------------------------- /guides/assets/pipeline_step_redirection_compiled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/guides/assets/pipeline_step_redirection_compiled.png -------------------------------------------------------------------------------- /guides/assets/pipeline_step_redirection_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/guides/assets/pipeline_step_redirection_note.png -------------------------------------------------------------------------------- /guides/assets/pipeline_step_task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/guides/assets/pipeline_step_task.png -------------------------------------------------------------------------------- /guides/assets/pipeline_step_task_compiled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/guides/assets/pipeline_step_task_compiled.png -------------------------------------------------------------------------------- /guides/how_dummy_built.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/guides/how_dummy_built.zh-CN.md -------------------------------------------------------------------------------- /guides/how_dummy_built_en-US.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/guides/how_dummy_built_en-US.md -------------------------------------------------------------------------------- /guides/internals.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/guides/internals.zh-CN.md -------------------------------------------------------------------------------- /guides/pipeline.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/guides/pipeline.zh-CN.md -------------------------------------------------------------------------------- /guides/pipeline_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/guides/pipeline_EN.md -------------------------------------------------------------------------------- /guides/source/architecture.en.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/guides/source/architecture.en.drawio -------------------------------------------------------------------------------- /guides/source/architecture.zh-CN.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/guides/source/architecture.zh-CN.drawio -------------------------------------------------------------------------------- /guides/source/instance_lifecycle.en.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/guides/source/instance_lifecycle.en.drawio -------------------------------------------------------------------------------- /guides/source/instance_lifecycle.zh-CN.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/guides/source/instance_lifecycle.zh-CN.drawio -------------------------------------------------------------------------------- /guides/tutorials.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/guides/tutorials.zh-CN.md -------------------------------------------------------------------------------- /guides/tutorials_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/guides/tutorials_EN.md -------------------------------------------------------------------------------- /lib/flow_core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/lib/flow_core.rb -------------------------------------------------------------------------------- /lib/flow_core/arc_guardable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/lib/flow_core/arc_guardable.rb -------------------------------------------------------------------------------- /lib/flow_core/definition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/lib/flow_core/definition.rb -------------------------------------------------------------------------------- /lib/flow_core/definition/guard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/lib/flow_core/definition/guard.rb -------------------------------------------------------------------------------- /lib/flow_core/definition/net.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/lib/flow_core/definition/net.rb -------------------------------------------------------------------------------- /lib/flow_core/definition/place.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/lib/flow_core/definition/place.rb -------------------------------------------------------------------------------- /lib/flow_core/definition/transition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/lib/flow_core/definition/transition.rb -------------------------------------------------------------------------------- /lib/flow_core/definition/trigger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/lib/flow_core/definition/trigger.rb -------------------------------------------------------------------------------- /lib/flow_core/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/lib/flow_core/engine.rb -------------------------------------------------------------------------------- /lib/flow_core/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/lib/flow_core/errors.rb -------------------------------------------------------------------------------- /lib/flow_core/locale/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/lib/flow_core/locale/en.yml -------------------------------------------------------------------------------- /lib/flow_core/task_callbacks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/lib/flow_core/task_callbacks.rb -------------------------------------------------------------------------------- /lib/flow_core/task_executable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/lib/flow_core/task_executable.rb -------------------------------------------------------------------------------- /lib/flow_core/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module FlowCore 4 | VERSION = "0.0.6" 5 | end 6 | -------------------------------------------------------------------------------- /lib/flow_core/violations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/lib/flow_core/violations.rb -------------------------------------------------------------------------------- /lib/tasks/flow_core_tasks.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/lib/tasks/flow_core_tasks.rake -------------------------------------------------------------------------------- /test/dummy/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/Rakefile -------------------------------------------------------------------------------- /test/dummy/app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/assets/config/manifest.js -------------------------------------------------------------------------------- /test/dummy/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/assets/javascripts/application.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/assets/javascripts/application.es6 -------------------------------------------------------------------------------- /test/dummy/app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /test/dummy/app/assets/stylesheets/selectize/plugins/drag_drop.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/assets/stylesheets/selectize/plugins/drag_drop.scss -------------------------------------------------------------------------------- /test/dummy/app/assets/stylesheets/selectize/plugins/dropdown_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/assets/stylesheets/selectize/plugins/dropdown_header.scss -------------------------------------------------------------------------------- /test/dummy/app/assets/stylesheets/selectize/plugins/optgroup_columns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/assets/stylesheets/selectize/plugins/optgroup_columns.scss -------------------------------------------------------------------------------- /test/dummy/app/assets/stylesheets/selectize/plugins/remove_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/assets/stylesheets/selectize/plugins/remove_button.scss -------------------------------------------------------------------------------- /test/dummy/app/assets/stylesheets/selectize/selectize.bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/assets/stylesheets/selectize/selectize.bootstrap.scss -------------------------------------------------------------------------------- /test/dummy/app/assets/stylesheets/selectize/selectize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/assets/stylesheets/selectize/selectize.scss -------------------------------------------------------------------------------- /test/dummy/app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /test/dummy/app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/controllers/fields/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/fields/application_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/fields/choices_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/fields/choices_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/fields/data_source_options_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/fields/data_source_options_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/fields/options_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/fields/options_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/fields/validations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/fields/validations_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/forms/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/forms/application_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/forms/fields_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/forms/fields_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/forms/overrides_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/forms/overrides_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/forms/previews_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/forms/previews_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/forms_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/forms_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/home_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/human_tasks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/human_tasks_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/instances/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/instances/application_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/instances/tasks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/instances/tasks_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/instances_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/instances_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/nested_forms/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/nested_forms/application_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/nested_forms/fields_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/nested_forms/fields_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/notifications_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/notifications_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/pipelines/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/pipelines/application_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/pipelines/branches/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/pipelines/branches/application_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/pipelines/branches/arc_guards_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/pipelines/branches/arc_guards_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/pipelines/branches/steps_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/pipelines/branches/steps_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/pipelines/branches_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/pipelines/branches_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/pipelines/steps/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/pipelines/steps/application_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/pipelines/steps/branches_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/pipelines/steps/branches_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/pipelines/steps/redirections_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/pipelines/steps/redirections_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/pipelines/steps/transition_triggers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/pipelines/steps/transition_triggers_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/pipelines/steps_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/pipelines/steps_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/pipelines_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/pipelines_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/session_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/session_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/workflows/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/workflows/application_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/workflows/arcs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/workflows/arcs_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/workflows/instances_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/workflows/instances_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/workflows/transitions/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/workflows/transitions/application_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/workflows/transitions/triggers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/workflows/transitions/triggers_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/workflows/transitions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/workflows/transitions_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/workflows_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/controllers/workflows_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /test/dummy/app/helpers/breadcrumbs_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/helpers/breadcrumbs_helper.rb -------------------------------------------------------------------------------- /test/dummy/app/helpers/fields_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/helpers/fields_helper.rb -------------------------------------------------------------------------------- /test/dummy/app/helpers/forms_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/helpers/forms_helper.rb -------------------------------------------------------------------------------- /test/dummy/app/helpers/navigation_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/helpers/navigation_helper.rb -------------------------------------------------------------------------------- /test/dummy/app/helpers/workflows_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/helpers/workflows_helper.rb -------------------------------------------------------------------------------- /test/dummy/app/javascript/packs/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/javascript/packs/application.js -------------------------------------------------------------------------------- /test/dummy/app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/jobs/application_job.rb -------------------------------------------------------------------------------- /test/dummy/app/jobs/timer_task_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/jobs/timer_task_job.rb -------------------------------------------------------------------------------- /test/dummy/app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /test/dummy/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/application_record.rb -------------------------------------------------------------------------------- /test/dummy/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/models/concerns/form_kit/options/data_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/concerns/form_kit/options/data_source.rb -------------------------------------------------------------------------------- /test/dummy/app/models/concerns/form_kit/validations/acceptance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/concerns/form_kit/validations/acceptance.rb -------------------------------------------------------------------------------- /test/dummy/app/models/concerns/form_kit/validations/confirmation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/concerns/form_kit/validations/confirmation.rb -------------------------------------------------------------------------------- /test/dummy/app/models/concerns/form_kit/validations/exclusion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/concerns/form_kit/validations/exclusion.rb -------------------------------------------------------------------------------- /test/dummy/app/models/concerns/form_kit/validations/format.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/concerns/form_kit/validations/format.rb -------------------------------------------------------------------------------- /test/dummy/app/models/concerns/form_kit/validations/inclusion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/concerns/form_kit/validations/inclusion.rb -------------------------------------------------------------------------------- /test/dummy/app/models/concerns/form_kit/validations/length.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/concerns/form_kit/validations/length.rb -------------------------------------------------------------------------------- /test/dummy/app/models/concerns/form_kit/validations/numericality.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/concerns/form_kit/validations/numericality.rb -------------------------------------------------------------------------------- /test/dummy/app/models/concerns/form_kit/validations/presence.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/concerns/form_kit/validations/presence.rb -------------------------------------------------------------------------------- /test/dummy/app/models/concerns/form_kit/validations/uniqueness.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/concerns/form_kit/validations/uniqueness.rb -------------------------------------------------------------------------------- /test/dummy/app/models/flow_kit/arc_guards.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/flow_kit/arc_guards.rb -------------------------------------------------------------------------------- /test/dummy/app/models/flow_kit/arc_guards/ruby_script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/flow_kit/arc_guards/ruby_script.rb -------------------------------------------------------------------------------- /test/dummy/app/models/flow_kit/arc_guards/ruby_script/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/flow_kit/arc_guards/ruby_script/configuration.rb -------------------------------------------------------------------------------- /test/dummy/app/models/flow_kit/assignee_candidate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/flow_kit/assignee_candidate.rb -------------------------------------------------------------------------------- /test/dummy/app/models/flow_kit/business_instance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/flow_kit/business_instance.rb -------------------------------------------------------------------------------- /test/dummy/app/models/flow_kit/business_pipeline.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/flow_kit/business_pipeline.rb -------------------------------------------------------------------------------- /test/dummy/app/models/flow_kit/business_workflow.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/flow_kit/business_workflow.rb -------------------------------------------------------------------------------- /test/dummy/app/models/flow_kit/human_task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/flow_kit/human_task.rb -------------------------------------------------------------------------------- /test/dummy/app/models/flow_kit/steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/flow_kit/steps.rb -------------------------------------------------------------------------------- /test/dummy/app/models/flow_kit/transition_triggers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/flow_kit/transition_triggers.rb -------------------------------------------------------------------------------- /test/dummy/app/models/flow_kit/transition_triggers/human_task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/flow_kit/transition_triggers/human_task.rb -------------------------------------------------------------------------------- /test/dummy/app/models/flow_kit/transition_triggers/human_task/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/flow_kit/transition_triggers/human_task/configuration.rb -------------------------------------------------------------------------------- /test/dummy/app/models/flow_kit/transition_triggers/timer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/flow_kit/transition_triggers/timer.rb -------------------------------------------------------------------------------- /test/dummy/app/models/flow_kit/transition_triggers/timer/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/flow_kit/transition_triggers/timer/configuration.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/application_record.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/choice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/choice.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/data_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/data_source.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/data_sources.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/data_sources.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/data_sources/empty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/data_sources/empty.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/embeds/date_range.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/embeds/date_range.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/embeds/datetime_range.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/embeds/datetime_range.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/embeds/decimal_range.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/embeds/decimal_range.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/embeds/integer_range.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/embeds/integer_range.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/field.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/field/fakable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/field/fakable.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/field/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/field/helper.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/field_options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/field_options.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/field_override.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/field_override.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/boolean.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/boolean.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/boolean/validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/boolean/validations.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/choice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/choice.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/choice/fakable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/choice/fakable.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/choice/validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/choice/validations.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/date.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/date.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/date/options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/date/options.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/date/validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/date/validations.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/date_range.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/date_range.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/date_range/options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/date_range/options.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/date_range/validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/date_range/validations.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/datetime.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/datetime.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/datetime/options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/datetime/options.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/datetime/validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/datetime/validations.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/datetime_range.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/datetime_range.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/datetime_range/options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/datetime_range/options.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/datetime_range/validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/datetime_range/validations.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/decimal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/decimal.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/decimal/options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/decimal/options.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/decimal/validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/decimal/validations.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/decimal_range.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/decimal_range.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/decimal_range/options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/decimal_range/options.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/decimal_range/validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/decimal_range/validations.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/integer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/integer.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/integer/options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/integer/options.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/integer/validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/integer/validations.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/integer_range.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/integer_range.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/integer_range/options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/integer_range/options.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/integer_range/validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/integer_range/validations.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/multiple_choice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/multiple_choice.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/multiple_choice/fakable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/multiple_choice/fakable.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/multiple_choice/validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/multiple_choice/validations.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/multiple_nested_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/multiple_nested_form.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/multiple_nested_form/validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/multiple_nested_form/validations.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/multiple_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/multiple_resource.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/multiple_resource/options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/multiple_resource/options.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/multiple_resource/validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/multiple_resource/validations.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/multiple_resource_select.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/multiple_resource_select.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/multiple_resource_select/options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/multiple_resource_select/options.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/multiple_resource_select/validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/multiple_resource_select/validations.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/multiple_select.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/multiple_select.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/multiple_select/fakable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/multiple_select/fakable.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/multiple_select/options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/multiple_select/options.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/multiple_select/validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/multiple_select/validations.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/nested_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/nested_form.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/nested_form/options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/nested_form/options.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/nested_form/validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/nested_form/validations.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/resource.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/resource/options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/resource/options.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/resource/validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/resource/validations.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/resource_select.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/resource_select.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/resource_select/options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/resource_select/options.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/resource_select/validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/resource_select/validations.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/select.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/select.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/select/fakable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/select/fakable.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/select/options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/select/options.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/select/validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/select/validations.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/text.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/text/options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/text/options.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/fields/text/validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/fields/text/validations.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/form.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/form/fakable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/form/fakable.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/form_override.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/form_override.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/metal_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/metal_form.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/nested_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/nested_form.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/non_configurable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/non_configurable.rb -------------------------------------------------------------------------------- /test/dummy/app/models/form_kit/virtual_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/form_kit/virtual_model.rb -------------------------------------------------------------------------------- /test/dummy/app/models/notification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/notification.rb -------------------------------------------------------------------------------- /test/dummy/app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/models/user.rb -------------------------------------------------------------------------------- /test/dummy/app/overrides/action_view/helpers/form_builder_override.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/overrides/action_view/helpers/form_builder_override.rb -------------------------------------------------------------------------------- /test/dummy/app/overrides/models/flow_core/branch_override.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/overrides/models/flow_core/branch_override.rb -------------------------------------------------------------------------------- /test/dummy/app/overrides/models/flow_core/pipeline_override.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/overrides/models/flow_core/pipeline_override.rb -------------------------------------------------------------------------------- /test/dummy/app/overrides/models/flow_core/step_override.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/overrides/models/flow_core/step_override.rb -------------------------------------------------------------------------------- /test/dummy/app/overrides/models/flow_core/steps/end_override.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/overrides/models/flow_core/steps/end_override.rb -------------------------------------------------------------------------------- /test/dummy/app/overrides/models/flow_core/workflow_override.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/overrides/models/flow_core/workflow_override.rb -------------------------------------------------------------------------------- /test/dummy/app/presenters/application_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/presenters/application_presenter.rb -------------------------------------------------------------------------------- /test/dummy/app/presenters/concerns/form_kit/fields/presenter_for_number_field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/presenters/concerns/form_kit/fields/presenter_for_number_field.rb -------------------------------------------------------------------------------- /test/dummy/app/presenters/form_kit/composite_field_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/presenters/form_kit/composite_field_presenter.rb -------------------------------------------------------------------------------- /test/dummy/app/presenters/form_kit/field_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/presenters/form_kit/field_presenter.rb -------------------------------------------------------------------------------- /test/dummy/app/presenters/form_kit/fields/boolean_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/presenters/form_kit/fields/boolean_presenter.rb -------------------------------------------------------------------------------- /test/dummy/app/presenters/form_kit/fields/choice_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/presenters/form_kit/fields/choice_presenter.rb -------------------------------------------------------------------------------- /test/dummy/app/presenters/form_kit/fields/date_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/presenters/form_kit/fields/date_presenter.rb -------------------------------------------------------------------------------- /test/dummy/app/presenters/form_kit/fields/date_range_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/presenters/form_kit/fields/date_range_presenter.rb -------------------------------------------------------------------------------- /test/dummy/app/presenters/form_kit/fields/datetime_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/presenters/form_kit/fields/datetime_presenter.rb -------------------------------------------------------------------------------- /test/dummy/app/presenters/form_kit/fields/datetime_range_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/presenters/form_kit/fields/datetime_range_presenter.rb -------------------------------------------------------------------------------- /test/dummy/app/presenters/form_kit/fields/decimal_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/presenters/form_kit/fields/decimal_presenter.rb -------------------------------------------------------------------------------- /test/dummy/app/presenters/form_kit/fields/decimal_range_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/presenters/form_kit/fields/decimal_range_presenter.rb -------------------------------------------------------------------------------- /test/dummy/app/presenters/form_kit/fields/integer_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/presenters/form_kit/fields/integer_presenter.rb -------------------------------------------------------------------------------- /test/dummy/app/presenters/form_kit/fields/integer_range_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/presenters/form_kit/fields/integer_range_presenter.rb -------------------------------------------------------------------------------- /test/dummy/app/presenters/form_kit/fields/member_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/presenters/form_kit/fields/member_presenter.rb -------------------------------------------------------------------------------- /test/dummy/app/presenters/form_kit/fields/multiple_choice_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/presenters/form_kit/fields/multiple_choice_presenter.rb -------------------------------------------------------------------------------- /test/dummy/app/presenters/form_kit/fields/multiple_nested_form_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/presenters/form_kit/fields/multiple_nested_form_presenter.rb -------------------------------------------------------------------------------- /test/dummy/app/presenters/form_kit/fields/multiple_resource_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/presenters/form_kit/fields/multiple_resource_presenter.rb -------------------------------------------------------------------------------- /test/dummy/app/presenters/form_kit/fields/multiple_resource_select_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/presenters/form_kit/fields/multiple_resource_select_presenter.rb -------------------------------------------------------------------------------- /test/dummy/app/presenters/form_kit/fields/multiple_select_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/presenters/form_kit/fields/multiple_select_presenter.rb -------------------------------------------------------------------------------- /test/dummy/app/presenters/form_kit/fields/nested_form_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/presenters/form_kit/fields/nested_form_presenter.rb -------------------------------------------------------------------------------- /test/dummy/app/presenters/form_kit/fields/resource_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/presenters/form_kit/fields/resource_presenter.rb -------------------------------------------------------------------------------- /test/dummy/app/presenters/form_kit/fields/resource_select_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/presenters/form_kit/fields/resource_select_presenter.rb -------------------------------------------------------------------------------- /test/dummy/app/presenters/form_kit/fields/select_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/presenters/form_kit/fields/select_presenter.rb -------------------------------------------------------------------------------- /test/dummy/app/presenters/form_kit/fields/text_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/presenters/form_kit/fields/text_presenter.rb -------------------------------------------------------------------------------- /test/dummy/app/views/_flow_kit/arc_guards/_ruby_script.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_flow_kit/arc_guards/_ruby_script.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_flow_kit/transition_triggers/_human_task.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_flow_kit/transition_triggers/_human_task.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_flow_kit/transition_triggers/_timer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_flow_kit/transition_triggers/_timer.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/_nested_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/_nested_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/data_source_options/_dictionary.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/data_source_options/_dictionary.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/data_source_options/_empty.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/field_options/_date.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/field_options/_date.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/field_options/_date_range.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/field_options/_date_range.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/field_options/_datetime.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/field_options/_datetime.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/field_options/_datetime_range.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/field_options/_datetime_range.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/field_options/_decimal.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/field_options/_decimal.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/field_options/_decimal_range.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/field_options/_decimal_range.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/field_options/_integer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/field_options/_integer.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/field_options/_integer_range.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/field_options/_integer_range.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/field_options/_multiple_resource.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/field_options/_multiple_resource.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/field_options/_multiple_resource_select.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/field_options/_multiple_resource_select.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/field_options/_multiple_select.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/field_options/_multiple_select.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/field_options/_resource.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/field_options/_resource.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/field_options/_resource_select.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/field_options/_resource_select.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/field_options/_select.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/field_options/_select.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/field_options/_text.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/field_options/_text.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/fields/_boolean.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/fields/_boolean.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/fields/_choice.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/fields/_choice.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/fields/_date.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/fields/_date.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/fields/_date_range.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/fields/_date_range.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/fields/_datetime.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/fields/_datetime.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/fields/_datetime_range.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/fields/_datetime_range.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/fields/_decimal.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/fields/_decimal.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/fields/_decimal_range.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/fields/_decimal_range.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/fields/_integer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/fields/_integer.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/fields/_integer_range.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/fields/_integer_range.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/fields/_multiple_choice.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/fields/_multiple_choice.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/fields/_multiple_nested_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/fields/_multiple_nested_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/fields/_multiple_resource.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/fields/_multiple_resource.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/fields/_multiple_resource_select.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/fields/_multiple_resource_select.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/fields/_multiple_select.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/fields/_multiple_select.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/fields/_nested_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/fields/_nested_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/fields/_resource.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/fields/_resource.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/fields/_resource_select.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/fields/_resource_select.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/fields/_select.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/fields/_select.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/fields/_text.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/fields/_text.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/preview/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/preview/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/preview/_nested_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/preview/_nested_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/render/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/render/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/validations/_acceptance.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/validations/_acceptance.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/validations/_confirmation.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/validations/_confirmation.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/validations/_exclusion.html.erb: -------------------------------------------------------------------------------- 1 |

Exclusion

2 |
3 | -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/validations/_format.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/validations/_format.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/validations/_inclusion.html.erb: -------------------------------------------------------------------------------- 1 |

Inclusion

2 |
3 | -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/validations/_length.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/validations/_length.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/validations/_numericality.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/validations/_numericality.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/validations/_presence.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/validations/_presence.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/_form_core/validations/_uniqueness.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/_form_core/validations/_uniqueness.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/fields/choices/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/fields/choices/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/fields/choices/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/fields/choices/edit.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/fields/choices/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/fields/choices/index.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/fields/choices/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/fields/choices/new.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/fields/data_source_options/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/fields/data_source_options/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/fields/data_source_options/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/fields/data_source_options/edit.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/fields/options/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/fields/options/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/fields/options/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/fields/options/edit.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/fields/validations/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/fields/validations/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/fields/validations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/fields/validations/edit.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/forms/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/forms/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/forms/_tabs.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/forms/_tabs.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/forms/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/forms/edit.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/forms/fields/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/forms/fields/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/forms/fields/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/forms/fields/edit.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/forms/fields/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/forms/fields/index.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/forms/fields/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/forms/fields/new.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/forms/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/forms/index.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/forms/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/forms/new.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/forms/overrides/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/forms/overrides/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/forms/overrides/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/forms/overrides/edit.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/forms/overrides/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/forms/overrides/index.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/forms/overrides/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/forms/overrides/new.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/forms/previews/create.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/forms/previews/create.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/forms/previews/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/forms/previews/show.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/home/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/home/index.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/human_tasks/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/human_tasks/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/human_tasks/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/human_tasks/show.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/instances/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/instances/index.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/instances/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/instances/show.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/kaminari/_first_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/kaminari/_first_page.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/kaminari/_gap.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/kaminari/_gap.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/kaminari/_last_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/kaminari/_last_page.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/kaminari/_next_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/kaminari/_next_page.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/kaminari/_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/kaminari/_page.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/kaminari/_paginator.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/kaminari/_paginator.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/kaminari/_prev_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/kaminari/_prev_page.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/_alert.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/layouts/_alert.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/_breadcrumb.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/layouts/_breadcrumb.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/layouts/_footer.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/layouts/_header.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /test/dummy/app/views/nested_forms/fields/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/nested_forms/fields/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/nested_forms/fields/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/nested_forms/fields/edit.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/nested_forms/fields/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/nested_forms/fields/index.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/nested_forms/fields/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/nested_forms/fields/new.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/notifications/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/notifications/index.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/pipelines/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/pipelines/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/pipelines/branches/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/pipelines/branches/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/pipelines/branches/arc_guards/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/pipelines/branches/arc_guards/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/pipelines/branches/arc_guards/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/pipelines/branches/arc_guards/edit.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/pipelines/branches/arc_guards/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/pipelines/branches/arc_guards/new.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/pipelines/branches/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/pipelines/branches/edit.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/pipelines/branches/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/pipelines/branches/show.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/pipelines/branches/steps/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/pipelines/branches/steps/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/pipelines/branches/steps/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/pipelines/branches/steps/new.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/pipelines/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/pipelines/edit.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/pipelines/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/pipelines/index.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/pipelines/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/pipelines/new.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/pipelines/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/pipelines/show.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/pipelines/steps/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/pipelines/steps/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/pipelines/steps/branches/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/pipelines/steps/branches/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/pipelines/steps/branches/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/pipelines/steps/branches/new.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/pipelines/steps/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/pipelines/steps/edit.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/pipelines/steps/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/pipelines/steps/new.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/pipelines/steps/redirections/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/pipelines/steps/redirections/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/pipelines/steps/redirections/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/pipelines/steps/redirections/edit.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/pipelines/steps/transition_triggers/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/pipelines/steps/transition_triggers/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/pipelines/steps/transition_triggers/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/pipelines/steps/transition_triggers/edit.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/pipelines/steps/transition_triggers/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/pipelines/steps/transition_triggers/new.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/users/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/users/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/users/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/users/edit.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/users/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/users/index.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/users/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/users/new.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/workflows/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/workflows/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/workflows/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/workflows/edit.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/workflows/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/workflows/index.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/workflows/instances/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/workflows/instances/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/workflows/instances/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/workflows/instances/new.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/workflows/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/workflows/new.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/workflows/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/workflows/show.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/workflows/transitions/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/workflows/transitions/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/workflows/transitions/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/workflows/transitions/show.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/workflows/transitions/triggers/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/workflows/transitions/triggers/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/workflows/transitions/triggers/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/workflows/transitions/triggers/edit.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/workflows/transitions/triggers/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/app/views/workflows/transitions/triggers/new.html.erb -------------------------------------------------------------------------------- /test/dummy/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/bin/rails -------------------------------------------------------------------------------- /test/dummy/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/bin/rake -------------------------------------------------------------------------------- /test/dummy/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/bin/setup -------------------------------------------------------------------------------- /test/dummy/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/config.ru -------------------------------------------------------------------------------- /test/dummy/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/config/application.rb -------------------------------------------------------------------------------- /test/dummy/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/config/boot.rb -------------------------------------------------------------------------------- /test/dummy/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/config/cable.yml -------------------------------------------------------------------------------- /test/dummy/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/config/database.yml -------------------------------------------------------------------------------- /test/dummy/config/database.yml.pg.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/config/database.yml.pg.example -------------------------------------------------------------------------------- /test/dummy/config/database.yml.sqlite.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/config/database.yml.sqlite.example -------------------------------------------------------------------------------- /test/dummy/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/config/environment.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/config/environments/development.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/config/environments/production.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/config/environments/test.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/action_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/config/initializers/action_view.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/config/initializers/assets.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/config/initializers/inflections.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /test/dummy/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/config/locales/en.yml -------------------------------------------------------------------------------- /test/dummy/config/locales/form_kit.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/config/locales/form_kit.en.yml -------------------------------------------------------------------------------- /test/dummy/config/locales/kaminari.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/config/locales/kaminari.en.yml -------------------------------------------------------------------------------- /test/dummy/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/config/puma.rb -------------------------------------------------------------------------------- /test/dummy/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/config/routes.rb -------------------------------------------------------------------------------- /test/dummy/config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/config/spring.rb -------------------------------------------------------------------------------- /test/dummy/config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/config/storage.yml -------------------------------------------------------------------------------- /test/dummy/db/migrate/20200205175440_create_form_kit_tables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/db/migrate/20200205175440_create_form_kit_tables.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20200205175442_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/db/migrate/20200205175442_create_users.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20200205175443_add_columns_to_flow_core_tables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/db/migrate/20200205175443_add_columns_to_flow_core_tables.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20200205175444_create_notifications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/db/migrate/20200205175444_create_notifications.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20200523233221_create_human_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/db/migrate/20200523233221_create_human_tasks.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20200523233225_create_assignee_candidates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/db/migrate/20200523233225_create_assignee_candidates.rb -------------------------------------------------------------------------------- /test/dummy/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/db/schema.rb -------------------------------------------------------------------------------- /test/dummy/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/db/seeds.rb -------------------------------------------------------------------------------- /test/dummy/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/lib/model_kit/acts_as_default_value.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/lib/model_kit/acts_as_default_value.rb -------------------------------------------------------------------------------- /test/dummy/lib/model_kit/enum_attribute_localizable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/lib/model_kit/enum_attribute_localizable.rb -------------------------------------------------------------------------------- /test/dummy/lib/script_engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/lib/script_engine.rb -------------------------------------------------------------------------------- /test/dummy/lib/serializable_model/acts_as_default_value.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/lib/serializable_model/acts_as_default_value.rb -------------------------------------------------------------------------------- /test/dummy/lib/serializable_model/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/lib/serializable_model/base.rb -------------------------------------------------------------------------------- /test/dummy/lib/serializable_model/enum_attribute_localizable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/lib/serializable_model/enum_attribute_localizable.rb -------------------------------------------------------------------------------- /test/dummy/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/mruby/engine.gembox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/mruby/engine.gembox -------------------------------------------------------------------------------- /test/dummy/mruby/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/mruby/lib/core_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/mruby/lib/core_ext.rb -------------------------------------------------------------------------------- /test/dummy/mruby/lib/harden.rb: -------------------------------------------------------------------------------- 1 | Kernel.remove_method :object_id 2 | -------------------------------------------------------------------------------- /test/dummy/mruby/lib/input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/mruby/lib/input.rb -------------------------------------------------------------------------------- /test/dummy/mruby/lib/io.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/mruby/lib/io.rb -------------------------------------------------------------------------------- /test/dummy/mruby/lib/output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/mruby/lib/output.rb -------------------------------------------------------------------------------- /test/dummy/mruby/lib/script_kernel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/mruby/lib/script_kernel.rb -------------------------------------------------------------------------------- /test/dummy/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/public/404.html -------------------------------------------------------------------------------- /test/dummy/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/public/422.html -------------------------------------------------------------------------------- /test/dummy/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/dummy/public/500.html -------------------------------------------------------------------------------- /test/dummy/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/flow_core_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/flow_core_test.rb -------------------------------------------------------------------------------- /test/integration/navigation_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/integration/navigation_test.rb -------------------------------------------------------------------------------- /test/models/flow_core/arc_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/models/flow_core/arc_test.rb -------------------------------------------------------------------------------- /test/models/flow_core/instance_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/models/flow_core/instance_test.rb -------------------------------------------------------------------------------- /test/models/flow_core/place_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/models/flow_core/place_test.rb -------------------------------------------------------------------------------- /test/models/flow_core/task_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/models/flow_core/task_test.rb -------------------------------------------------------------------------------- /test/models/flow_core/token_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/models/flow_core/token_test.rb -------------------------------------------------------------------------------- /test/models/flow_core/transition_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/models/flow_core/transition_test.rb -------------------------------------------------------------------------------- /test/models/flow_core/workflow_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/models/flow_core/workflow_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/flow_core/HEAD/test/test_helper.rb --------------------------------------------------------------------------------