├── .github └── workflows │ ├── bats.yml │ ├── release.yml │ └── ruby.yml ├── .gitignore ├── .rubocop.yml ├── .rubocop_todo.yml ├── Dockerfile ├── Gemfile ├── MIT-LICENSE ├── README.md ├── Rakefile ├── doc ├── images │ ├── logo.png │ └── screenshot.png └── pages │ ├── .gitignore │ ├── Gemfile │ ├── README.md │ ├── Rakefile │ ├── _config.yml │ ├── plugins │ ├── alert_block.rb │ ├── div_tag.rb │ ├── graphviz.rb │ ├── plantuml.rb │ ├── play.rb │ ├── tags.rb │ └── toc.rb │ └── source │ ├── .nojekyll │ ├── 404.md │ ├── _includes │ ├── disqus.html │ ├── google_analytics.html │ ├── google_plus_one.html │ ├── menu.html │ ├── menu_brand.html │ ├── menu_right.html │ ├── post_item.html │ ├── scroll_to.html │ └── twitter_sharing.html │ ├── _layouts │ ├── default.html │ ├── page.html │ ├── post.html │ ├── presentation.html │ └── tag_page.html │ ├── _sass │ ├── _bootstrap-compass.scss │ ├── _bootstrap-mincer.scss │ ├── _bootstrap-sprockets.scss │ ├── _bootstrap-variables.sass │ ├── _bootstrap.scss │ ├── _specific.scss │ ├── _style.scss │ └── bootstrap │ │ ├── _alerts.scss │ │ ├── _badges.scss │ │ ├── _breadcrumbs.scss │ │ ├── _button-groups.scss │ │ ├── _buttons.scss │ │ ├── _carousel.scss │ │ ├── _close.scss │ │ ├── _code.scss │ │ ├── _component-animations.scss │ │ ├── _dropdowns.scss │ │ ├── _forms.scss │ │ ├── _glyphicons.scss │ │ ├── _grid.scss │ │ ├── _input-groups.scss │ │ ├── _jumbotron.scss │ │ ├── _labels.scss │ │ ├── _list-group.scss │ │ ├── _media.scss │ │ ├── _mixins.scss │ │ ├── _modals.scss │ │ ├── _navbar.scss │ │ ├── _navs.scss │ │ ├── _normalize.scss │ │ ├── _pager.scss │ │ ├── _pagination.scss │ │ ├── _panels.scss │ │ ├── _popovers.scss │ │ ├── _print.scss │ │ ├── _progress-bars.scss │ │ ├── _responsive-embed.scss │ │ ├── _responsive-utilities.scss │ │ ├── _scaffolding.scss │ │ ├── _tables.scss │ │ ├── _theme.scss │ │ ├── _thumbnails.scss │ │ ├── _tooltip.scss │ │ ├── _type.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── _wells.scss │ │ └── mixins │ │ ├── _alerts.scss │ │ ├── _background-variant.scss │ │ ├── _border-radius.scss │ │ ├── _buttons.scss │ │ ├── _center-block.scss │ │ ├── _clearfix.scss │ │ ├── _forms.scss │ │ ├── _gradients.scss │ │ ├── _grid-framework.scss │ │ ├── _grid.scss │ │ ├── _hide-text.scss │ │ ├── _image.scss │ │ ├── _labels.scss │ │ ├── _list-group.scss │ │ ├── _nav-divider.scss │ │ ├── _nav-vertical-align.scss │ │ ├── _opacity.scss │ │ ├── _pagination.scss │ │ ├── _panels.scss │ │ ├── _progress-bar.scss │ │ ├── _reset-filter.scss │ │ ├── _resize.scss │ │ ├── _responsive-visibility.scss │ │ ├── _size.scss │ │ ├── _tab-focus.scss │ │ ├── _table-row.scss │ │ ├── _text-emphasis.scss │ │ ├── _text-overflow.scss │ │ └── _vendor-prefixes.scss │ ├── atom.xml │ ├── bootstrap │ ├── config.json │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ ├── css │ ├── app.scss │ └── syntax.css │ ├── documentation │ └── index.md │ ├── faq │ └── index.md │ ├── images │ ├── dynflow-logos.svg │ ├── logo-long.png │ ├── logo-long.svg │ ├── logo-square.png │ ├── logo-square.svg │ ├── noise.png │ └── screenshot.png │ ├── index.md │ ├── media │ └── index.md │ └── projects │ └── index.md ├── docker-compose.yml ├── dynflow.gemspec ├── examples ├── chunked_output_benchmark.rb ├── clock_benchmark.rb ├── example_helper.rb ├── future_execution.rb ├── halt.rb ├── memory_limit_watcher.rb ├── orchestrate.rb ├── orchestrate_evented.rb ├── remote_executor.rb ├── singletons.rb ├── sub_plan_concurrency_control.rb ├── sub_plans.rb ├── sub_plans_v2.rb └── termination.rb ├── extras ├── expand │ ├── Dockerfile │ ├── README.md │ ├── go.mod │ ├── go.sum │ └── main.go └── statsd_mapping.conf ├── lib ├── dynflow.rb └── dynflow │ ├── action.rb │ ├── action │ ├── cancellable.rb │ ├── format.rb │ ├── missing.rb │ ├── polling.rb │ ├── progress.rb │ ├── rescue.rb │ ├── singleton.rb │ ├── suspended.rb │ ├── timeouts.rb │ ├── v2.rb │ ├── v2 │ │ └── with_sub_plans.rb │ ├── with_bulk_sub_plans.rb │ ├── with_polling_sub_plans.rb │ └── with_sub_plans.rb │ ├── active_job │ └── queue_adapter.rb │ ├── actor.rb │ ├── actors.rb │ ├── actors │ └── execution_plan_cleaner.rb │ ├── clock.rb │ ├── config.rb │ ├── connectors.rb │ ├── connectors │ ├── abstract.rb │ ├── database.rb │ └── direct.rb │ ├── coordinator.rb │ ├── coordinator_adapters.rb │ ├── coordinator_adapters │ ├── abstract.rb │ └── sequel.rb │ ├── dead_letter_silencer.rb │ ├── debug │ └── telemetry │ │ └── persistence.rb │ ├── delayed_executors.rb │ ├── delayed_executors │ ├── abstract.rb │ ├── abstract_core.rb │ └── polling.rb │ ├── delayed_plan.rb │ ├── director.rb │ ├── director │ ├── execution_plan_manager.rb │ ├── flow_manager.rb │ ├── queue_hash.rb │ ├── running_steps_manager.rb │ ├── sequence_cursor.rb │ └── sequential_manager.rb │ ├── dispatcher.rb │ ├── dispatcher │ ├── abstract.rb │ ├── client_dispatcher.rb │ └── executor_dispatcher.rb │ ├── errors.rb │ ├── execution_history.rb │ ├── execution_plan.rb │ ├── execution_plan │ ├── dependency_graph.rb │ ├── hooks.rb │ ├── output_reference.rb │ ├── steps.rb │ └── steps │ │ ├── abstract.rb │ │ ├── abstract_flow_step.rb │ │ ├── error.rb │ │ ├── finalize_step.rb │ │ ├── plan_step.rb │ │ └── run_step.rb │ ├── executors.rb │ ├── executors │ ├── abstract │ │ └── core.rb │ ├── parallel.rb │ ├── parallel │ │ ├── core.rb │ │ ├── pool.rb │ │ └── worker.rb │ └── sidekiq │ │ ├── core.rb │ │ ├── internal_job_base.rb │ │ ├── orchestrator_jobs.rb │ │ ├── redis_locking.rb │ │ ├── serialization.rb │ │ └── worker_jobs.rb │ ├── extensions.rb │ ├── extensions │ └── msgpack.rb │ ├── flows.rb │ ├── flows │ ├── abstract.rb │ ├── abstract_composed.rb │ ├── atom.rb │ ├── concurrence.rb │ ├── registry.rb │ └── sequence.rb │ ├── logger_adapters.rb │ ├── logger_adapters │ ├── abstract.rb │ ├── delegator.rb │ ├── formatters.rb │ ├── formatters │ │ ├── abstract.rb │ │ └── exception.rb │ └── simple.rb │ ├── middleware.rb │ ├── middleware │ ├── common │ │ ├── singleton.rb │ │ └── transaction.rb │ ├── register.rb │ ├── resolver.rb │ ├── stack.rb │ └── world.rb │ ├── persistence.rb │ ├── persistence_adapters.rb │ ├── persistence_adapters │ ├── abstract.rb │ ├── sequel.rb │ └── sequel_migrations │ │ ├── 001_initial.rb │ │ ├── 002_incremental_progress.rb │ │ ├── 003_parent_action.rb │ │ ├── 004_coordinator_records.rb │ │ ├── 005_envelopes.rb │ │ ├── 006_fix_data_length.rb │ │ ├── 007_future_execution.rb │ │ ├── 008_rename_scheduled_plans_to_delayed_plans.rb │ │ ├── 009_fix_mysql_data_length.rb │ │ ├── 010_add_execution_plans_label.rb │ │ ├── 011_placeholder.rb │ │ ├── 012_add_delayed_plans_serialized_args.rb │ │ ├── 013_add_action_columns.rb │ │ ├── 014_add_step_columns.rb │ │ ├── 015_add_execution_plan_columns.rb │ │ ├── 016_add_step_queue.rb │ │ ├── 017_add_delayed_plan_frozen.rb │ │ ├── 018_add_uuid_column.rb │ │ ├── 019_update_mysql_time_precision.rb │ │ ├── 020_drop_duplicate_indices.rb │ │ ├── 021_create_output_chunks.rb │ │ ├── 022_store_flows_as_msgpack.rb │ │ ├── 023_sqlite_workarounds.rb │ │ ├── 024_store_execution_plan_data_as_msgpack.rb │ │ └── msgpack_migration_helper.rb │ ├── rails.rb │ ├── rails │ ├── configuration.rb │ └── daemon.rb │ ├── round_robin.rb │ ├── semaphores.rb │ ├── semaphores │ ├── abstract.rb │ ├── aggregating.rb │ ├── dummy.rb │ └── stateful.rb │ ├── serializable.rb │ ├── serializer.rb │ ├── serializers.rb │ ├── serializers │ ├── abstract.rb │ └── noop.rb │ ├── stateful.rb │ ├── telemetry.rb │ ├── telemetry_adapters │ ├── abstract.rb │ ├── dummy.rb │ └── statsd.rb │ ├── testing.rb │ ├── testing │ ├── assertions.rb │ ├── dummy_coordinator.rb │ ├── dummy_execution_plan.rb │ ├── dummy_executor.rb │ ├── dummy_planned_action.rb │ ├── dummy_step.rb │ ├── dummy_world.rb │ ├── factories.rb │ ├── in_thread_executor.rb │ ├── in_thread_world.rb │ ├── managed_clock.rb │ └── mimic.rb │ ├── throttle_limiter.rb │ ├── transaction_adapters.rb │ ├── transaction_adapters │ ├── abstract.rb │ ├── active_record.rb │ └── none.rb │ ├── utils.rb │ ├── utils │ ├── indifferent_hash.rb │ └── priority_queue.rb │ ├── version.rb │ ├── watchers │ └── memory_consumption_watcher.rb │ ├── web.rb │ ├── web │ ├── console.rb │ ├── console_helpers.rb │ ├── filtering_helpers.rb │ └── world_helpers.rb │ ├── web_console.rb │ ├── world.rb │ └── world │ └── invalidation.rb ├── test ├── abnormal_states_recovery_test.rb ├── action_test.rb ├── activejob_adapter_test.rb ├── batch_sub_tasks_test.rb ├── bats │ ├── helpers │ │ ├── common.bash │ │ └── containers.bash │ ├── setup_suite.bash │ ├── sidekiq-orchestrator.bats │ └── teardown_suite.bash ├── clock_test.rb ├── concurrency_control_test.rb ├── coordinator_test.rb ├── daemon_test.rb ├── dead_letter_silencer_test.rb ├── dispatcher_test.rb ├── execution_plan_cleaner_test.rb ├── execution_plan_hooks_test.rb ├── execution_plan_test.rb ├── executor_test.rb ├── extensions_test.rb ├── flows_test.rb ├── future_execution_test.rb ├── memory_cosumption_watcher_test.rb ├── middleware_test.rb ├── persistence_test.rb ├── redis_locking_test.rb ├── rescue_test.rb ├── round_robin_test.rb ├── semaphores_test.rb ├── support │ ├── code_workflow_example.rb │ ├── dummy_example.rb │ ├── middleware_example.rb │ ├── rails │ │ └── config │ │ │ └── environment.rb │ ├── rescue_example.rb │ └── test_execution_log.rb ├── test_helper.rb ├── testing_test.rb ├── utils_test.rb ├── v2_sub_plans_test.rb ├── web_console_test.rb └── world_test.rb └── web ├── assets ├── images │ └── logo-square.png ├── javascripts │ └── application.js ├── stylesheets │ └── application.css └── vendor │ ├── bootstrap │ ├── config.json │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ └── jquery │ └── jquery.js └── views ├── execution_history.erb ├── flow.erb ├── flow_step.erb ├── index.erb ├── layout.erb ├── plan_step.erb ├── show.erb ├── world_validation_result.erb └── worlds.erb /.github/workflows/bats.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/.github/workflows/bats.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/ruby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/.github/workflows/ruby.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/Gemfile -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/Rakefile -------------------------------------------------------------------------------- /doc/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/images/logo.png -------------------------------------------------------------------------------- /doc/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/images/screenshot.png -------------------------------------------------------------------------------- /doc/pages/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/.gitignore -------------------------------------------------------------------------------- /doc/pages/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/Gemfile -------------------------------------------------------------------------------- /doc/pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/README.md -------------------------------------------------------------------------------- /doc/pages/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/Rakefile -------------------------------------------------------------------------------- /doc/pages/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/_config.yml -------------------------------------------------------------------------------- /doc/pages/plugins/alert_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/plugins/alert_block.rb -------------------------------------------------------------------------------- /doc/pages/plugins/div_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/plugins/div_tag.rb -------------------------------------------------------------------------------- /doc/pages/plugins/graphviz.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/plugins/graphviz.rb -------------------------------------------------------------------------------- /doc/pages/plugins/plantuml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/plugins/plantuml.rb -------------------------------------------------------------------------------- /doc/pages/plugins/play.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/plugins/play.rb -------------------------------------------------------------------------------- /doc/pages/plugins/tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/plugins/tags.rb -------------------------------------------------------------------------------- /doc/pages/plugins/toc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/plugins/toc.rb -------------------------------------------------------------------------------- /doc/pages/source/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/pages/source/404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/404.md -------------------------------------------------------------------------------- /doc/pages/source/_includes/disqus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_includes/disqus.html -------------------------------------------------------------------------------- /doc/pages/source/_includes/google_analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_includes/google_analytics.html -------------------------------------------------------------------------------- /doc/pages/source/_includes/google_plus_one.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_includes/google_plus_one.html -------------------------------------------------------------------------------- /doc/pages/source/_includes/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_includes/menu.html -------------------------------------------------------------------------------- /doc/pages/source/_includes/menu_brand.html: -------------------------------------------------------------------------------- 1 | 2 | {{ site.name }} 3 | -------------------------------------------------------------------------------- /doc/pages/source/_includes/menu_right.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /doc/pages/source/_includes/post_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_includes/post_item.html -------------------------------------------------------------------------------- /doc/pages/source/_includes/scroll_to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_includes/scroll_to.html -------------------------------------------------------------------------------- /doc/pages/source/_includes/twitter_sharing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_includes/twitter_sharing.html -------------------------------------------------------------------------------- /doc/pages/source/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_layouts/default.html -------------------------------------------------------------------------------- /doc/pages/source/_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_layouts/page.html -------------------------------------------------------------------------------- /doc/pages/source/_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_layouts/post.html -------------------------------------------------------------------------------- /doc/pages/source/_layouts/presentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_layouts/presentation.html -------------------------------------------------------------------------------- /doc/pages/source/_layouts/tag_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_layouts/tag_page.html -------------------------------------------------------------------------------- /doc/pages/source/_sass/_bootstrap-compass.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/_bootstrap-compass.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/_bootstrap-mincer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/_bootstrap-mincer.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/_bootstrap-sprockets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/_bootstrap-sprockets.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/_bootstrap-variables.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/_bootstrap-variables.sass -------------------------------------------------------------------------------- /doc/pages/source/_sass/_bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/_bootstrap.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/_specific.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/_specific.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/_style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/_style.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_alerts.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_badges.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_badges.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_breadcrumbs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_breadcrumbs.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_button-groups.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_button-groups.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_buttons.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_carousel.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_close.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_code.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_component-animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_component-animations.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_dropdowns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_dropdowns.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_forms.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_glyphicons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_glyphicons.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_grid.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_input-groups.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_input-groups.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_jumbotron.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_labels.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_list-group.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_media.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_mixins.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_modals.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_navbar.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_navs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_navs.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_normalize.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_pager.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_pager.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_pagination.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_panels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_panels.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_popovers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_popovers.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_print.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_progress-bars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_progress-bars.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_responsive-embed.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_responsive-embed.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_responsive-utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_responsive-utilities.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_scaffolding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_scaffolding.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_tables.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_theme.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_thumbnails.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_thumbnails.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_tooltip.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_type.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_utilities.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_variables.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/_wells.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/_wells.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/mixins/_alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/mixins/_alerts.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/mixins/_background-variant.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/mixins/_background-variant.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/mixins/_border-radius.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/mixins/_border-radius.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/mixins/_buttons.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/mixins/_center-block.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/mixins/_center-block.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/mixins/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/mixins/_clearfix.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/mixins/_forms.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/mixins/_gradients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/mixins/_gradients.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/mixins/_grid-framework.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/mixins/_grid-framework.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/mixins/_grid.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/mixins/_hide-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/mixins/_hide-text.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/mixins/_image.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/mixins/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/mixins/_labels.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/mixins/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/mixins/_list-group.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/mixins/_nav-divider.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/mixins/_nav-vertical-align.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/mixins/_nav-vertical-align.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/mixins/_opacity.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/mixins/_opacity.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/mixins/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/mixins/_pagination.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/mixins/_panels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/mixins/_panels.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/mixins/_progress-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/mixins/_progress-bar.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/mixins/_reset-filter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/mixins/_reset-filter.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/mixins/_resize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/mixins/_resize.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/mixins/_responsive-visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/mixins/_responsive-visibility.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/mixins/_size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/mixins/_size.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/mixins/_tab-focus.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/mixins/_tab-focus.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/mixins/_table-row.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/mixins/_table-row.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/mixins/_text-emphasis.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/mixins/_text-emphasis.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/mixins/_text-overflow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/mixins/_text-overflow.scss -------------------------------------------------------------------------------- /doc/pages/source/_sass/bootstrap/mixins/_vendor-prefixes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/_sass/bootstrap/mixins/_vendor-prefixes.scss -------------------------------------------------------------------------------- /doc/pages/source/atom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/atom.xml -------------------------------------------------------------------------------- /doc/pages/source/bootstrap/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/bootstrap/config.json -------------------------------------------------------------------------------- /doc/pages/source/bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /doc/pages/source/bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /doc/pages/source/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /doc/pages/source/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /doc/pages/source/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /doc/pages/source/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /doc/pages/source/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /doc/pages/source/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /doc/pages/source/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /doc/pages/source/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /doc/pages/source/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /doc/pages/source/css/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/css/app.scss -------------------------------------------------------------------------------- /doc/pages/source/css/syntax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/css/syntax.css -------------------------------------------------------------------------------- /doc/pages/source/documentation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/documentation/index.md -------------------------------------------------------------------------------- /doc/pages/source/faq/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/faq/index.md -------------------------------------------------------------------------------- /doc/pages/source/images/dynflow-logos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/images/dynflow-logos.svg -------------------------------------------------------------------------------- /doc/pages/source/images/logo-long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/images/logo-long.png -------------------------------------------------------------------------------- /doc/pages/source/images/logo-long.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/images/logo-long.svg -------------------------------------------------------------------------------- /doc/pages/source/images/logo-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/images/logo-square.png -------------------------------------------------------------------------------- /doc/pages/source/images/logo-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/images/logo-square.svg -------------------------------------------------------------------------------- /doc/pages/source/images/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/images/noise.png -------------------------------------------------------------------------------- /doc/pages/source/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/images/screenshot.png -------------------------------------------------------------------------------- /doc/pages/source/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/index.md -------------------------------------------------------------------------------- /doc/pages/source/media/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/media/index.md -------------------------------------------------------------------------------- /doc/pages/source/projects/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/doc/pages/source/projects/index.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /dynflow.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/dynflow.gemspec -------------------------------------------------------------------------------- /examples/chunked_output_benchmark.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/examples/chunked_output_benchmark.rb -------------------------------------------------------------------------------- /examples/clock_benchmark.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/examples/clock_benchmark.rb -------------------------------------------------------------------------------- /examples/example_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/examples/example_helper.rb -------------------------------------------------------------------------------- /examples/future_execution.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/examples/future_execution.rb -------------------------------------------------------------------------------- /examples/halt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/examples/halt.rb -------------------------------------------------------------------------------- /examples/memory_limit_watcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/examples/memory_limit_watcher.rb -------------------------------------------------------------------------------- /examples/orchestrate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/examples/orchestrate.rb -------------------------------------------------------------------------------- /examples/orchestrate_evented.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/examples/orchestrate_evented.rb -------------------------------------------------------------------------------- /examples/remote_executor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/examples/remote_executor.rb -------------------------------------------------------------------------------- /examples/singletons.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/examples/singletons.rb -------------------------------------------------------------------------------- /examples/sub_plan_concurrency_control.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/examples/sub_plan_concurrency_control.rb -------------------------------------------------------------------------------- /examples/sub_plans.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/examples/sub_plans.rb -------------------------------------------------------------------------------- /examples/sub_plans_v2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/examples/sub_plans_v2.rb -------------------------------------------------------------------------------- /examples/termination.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/examples/termination.rb -------------------------------------------------------------------------------- /extras/expand/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/extras/expand/Dockerfile -------------------------------------------------------------------------------- /extras/expand/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/extras/expand/README.md -------------------------------------------------------------------------------- /extras/expand/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/extras/expand/go.mod -------------------------------------------------------------------------------- /extras/expand/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/extras/expand/go.sum -------------------------------------------------------------------------------- /extras/expand/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/extras/expand/main.go -------------------------------------------------------------------------------- /extras/statsd_mapping.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/extras/statsd_mapping.conf -------------------------------------------------------------------------------- /lib/dynflow.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow.rb -------------------------------------------------------------------------------- /lib/dynflow/action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/action.rb -------------------------------------------------------------------------------- /lib/dynflow/action/cancellable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/action/cancellable.rb -------------------------------------------------------------------------------- /lib/dynflow/action/format.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/action/format.rb -------------------------------------------------------------------------------- /lib/dynflow/action/missing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/action/missing.rb -------------------------------------------------------------------------------- /lib/dynflow/action/polling.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/action/polling.rb -------------------------------------------------------------------------------- /lib/dynflow/action/progress.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/action/progress.rb -------------------------------------------------------------------------------- /lib/dynflow/action/rescue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/action/rescue.rb -------------------------------------------------------------------------------- /lib/dynflow/action/singleton.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/action/singleton.rb -------------------------------------------------------------------------------- /lib/dynflow/action/suspended.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/action/suspended.rb -------------------------------------------------------------------------------- /lib/dynflow/action/timeouts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/action/timeouts.rb -------------------------------------------------------------------------------- /lib/dynflow/action/v2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/action/v2.rb -------------------------------------------------------------------------------- /lib/dynflow/action/v2/with_sub_plans.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/action/v2/with_sub_plans.rb -------------------------------------------------------------------------------- /lib/dynflow/action/with_bulk_sub_plans.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/action/with_bulk_sub_plans.rb -------------------------------------------------------------------------------- /lib/dynflow/action/with_polling_sub_plans.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/action/with_polling_sub_plans.rb -------------------------------------------------------------------------------- /lib/dynflow/action/with_sub_plans.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/action/with_sub_plans.rb -------------------------------------------------------------------------------- /lib/dynflow/active_job/queue_adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/active_job/queue_adapter.rb -------------------------------------------------------------------------------- /lib/dynflow/actor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/actor.rb -------------------------------------------------------------------------------- /lib/dynflow/actors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/actors.rb -------------------------------------------------------------------------------- /lib/dynflow/actors/execution_plan_cleaner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/actors/execution_plan_cleaner.rb -------------------------------------------------------------------------------- /lib/dynflow/clock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/clock.rb -------------------------------------------------------------------------------- /lib/dynflow/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/config.rb -------------------------------------------------------------------------------- /lib/dynflow/connectors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/connectors.rb -------------------------------------------------------------------------------- /lib/dynflow/connectors/abstract.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/connectors/abstract.rb -------------------------------------------------------------------------------- /lib/dynflow/connectors/database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/connectors/database.rb -------------------------------------------------------------------------------- /lib/dynflow/connectors/direct.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/connectors/direct.rb -------------------------------------------------------------------------------- /lib/dynflow/coordinator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/coordinator.rb -------------------------------------------------------------------------------- /lib/dynflow/coordinator_adapters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/coordinator_adapters.rb -------------------------------------------------------------------------------- /lib/dynflow/coordinator_adapters/abstract.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/coordinator_adapters/abstract.rb -------------------------------------------------------------------------------- /lib/dynflow/coordinator_adapters/sequel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/coordinator_adapters/sequel.rb -------------------------------------------------------------------------------- /lib/dynflow/dead_letter_silencer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/dead_letter_silencer.rb -------------------------------------------------------------------------------- /lib/dynflow/debug/telemetry/persistence.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/debug/telemetry/persistence.rb -------------------------------------------------------------------------------- /lib/dynflow/delayed_executors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/delayed_executors.rb -------------------------------------------------------------------------------- /lib/dynflow/delayed_executors/abstract.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/delayed_executors/abstract.rb -------------------------------------------------------------------------------- /lib/dynflow/delayed_executors/abstract_core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/delayed_executors/abstract_core.rb -------------------------------------------------------------------------------- /lib/dynflow/delayed_executors/polling.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/delayed_executors/polling.rb -------------------------------------------------------------------------------- /lib/dynflow/delayed_plan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/delayed_plan.rb -------------------------------------------------------------------------------- /lib/dynflow/director.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/director.rb -------------------------------------------------------------------------------- /lib/dynflow/director/execution_plan_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/director/execution_plan_manager.rb -------------------------------------------------------------------------------- /lib/dynflow/director/flow_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/director/flow_manager.rb -------------------------------------------------------------------------------- /lib/dynflow/director/queue_hash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/director/queue_hash.rb -------------------------------------------------------------------------------- /lib/dynflow/director/running_steps_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/director/running_steps_manager.rb -------------------------------------------------------------------------------- /lib/dynflow/director/sequence_cursor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/director/sequence_cursor.rb -------------------------------------------------------------------------------- /lib/dynflow/director/sequential_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/director/sequential_manager.rb -------------------------------------------------------------------------------- /lib/dynflow/dispatcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/dispatcher.rb -------------------------------------------------------------------------------- /lib/dynflow/dispatcher/abstract.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/dispatcher/abstract.rb -------------------------------------------------------------------------------- /lib/dynflow/dispatcher/client_dispatcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/dispatcher/client_dispatcher.rb -------------------------------------------------------------------------------- /lib/dynflow/dispatcher/executor_dispatcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/dispatcher/executor_dispatcher.rb -------------------------------------------------------------------------------- /lib/dynflow/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/errors.rb -------------------------------------------------------------------------------- /lib/dynflow/execution_history.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/execution_history.rb -------------------------------------------------------------------------------- /lib/dynflow/execution_plan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/execution_plan.rb -------------------------------------------------------------------------------- /lib/dynflow/execution_plan/dependency_graph.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/execution_plan/dependency_graph.rb -------------------------------------------------------------------------------- /lib/dynflow/execution_plan/hooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/execution_plan/hooks.rb -------------------------------------------------------------------------------- /lib/dynflow/execution_plan/output_reference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/execution_plan/output_reference.rb -------------------------------------------------------------------------------- /lib/dynflow/execution_plan/steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/execution_plan/steps.rb -------------------------------------------------------------------------------- /lib/dynflow/execution_plan/steps/abstract.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/execution_plan/steps/abstract.rb -------------------------------------------------------------------------------- /lib/dynflow/execution_plan/steps/abstract_flow_step.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/execution_plan/steps/abstract_flow_step.rb -------------------------------------------------------------------------------- /lib/dynflow/execution_plan/steps/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/execution_plan/steps/error.rb -------------------------------------------------------------------------------- /lib/dynflow/execution_plan/steps/finalize_step.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/execution_plan/steps/finalize_step.rb -------------------------------------------------------------------------------- /lib/dynflow/execution_plan/steps/plan_step.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/execution_plan/steps/plan_step.rb -------------------------------------------------------------------------------- /lib/dynflow/execution_plan/steps/run_step.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/execution_plan/steps/run_step.rb -------------------------------------------------------------------------------- /lib/dynflow/executors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/executors.rb -------------------------------------------------------------------------------- /lib/dynflow/executors/abstract/core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/executors/abstract/core.rb -------------------------------------------------------------------------------- /lib/dynflow/executors/parallel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/executors/parallel.rb -------------------------------------------------------------------------------- /lib/dynflow/executors/parallel/core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/executors/parallel/core.rb -------------------------------------------------------------------------------- /lib/dynflow/executors/parallel/pool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/executors/parallel/pool.rb -------------------------------------------------------------------------------- /lib/dynflow/executors/parallel/worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/executors/parallel/worker.rb -------------------------------------------------------------------------------- /lib/dynflow/executors/sidekiq/core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/executors/sidekiq/core.rb -------------------------------------------------------------------------------- /lib/dynflow/executors/sidekiq/internal_job_base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/executors/sidekiq/internal_job_base.rb -------------------------------------------------------------------------------- /lib/dynflow/executors/sidekiq/orchestrator_jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/executors/sidekiq/orchestrator_jobs.rb -------------------------------------------------------------------------------- /lib/dynflow/executors/sidekiq/redis_locking.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/executors/sidekiq/redis_locking.rb -------------------------------------------------------------------------------- /lib/dynflow/executors/sidekiq/serialization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/executors/sidekiq/serialization.rb -------------------------------------------------------------------------------- /lib/dynflow/executors/sidekiq/worker_jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/executors/sidekiq/worker_jobs.rb -------------------------------------------------------------------------------- /lib/dynflow/extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/extensions.rb -------------------------------------------------------------------------------- /lib/dynflow/extensions/msgpack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/extensions/msgpack.rb -------------------------------------------------------------------------------- /lib/dynflow/flows.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/flows.rb -------------------------------------------------------------------------------- /lib/dynflow/flows/abstract.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/flows/abstract.rb -------------------------------------------------------------------------------- /lib/dynflow/flows/abstract_composed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/flows/abstract_composed.rb -------------------------------------------------------------------------------- /lib/dynflow/flows/atom.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/flows/atom.rb -------------------------------------------------------------------------------- /lib/dynflow/flows/concurrence.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/flows/concurrence.rb -------------------------------------------------------------------------------- /lib/dynflow/flows/registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/flows/registry.rb -------------------------------------------------------------------------------- /lib/dynflow/flows/sequence.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/flows/sequence.rb -------------------------------------------------------------------------------- /lib/dynflow/logger_adapters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/logger_adapters.rb -------------------------------------------------------------------------------- /lib/dynflow/logger_adapters/abstract.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/logger_adapters/abstract.rb -------------------------------------------------------------------------------- /lib/dynflow/logger_adapters/delegator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/logger_adapters/delegator.rb -------------------------------------------------------------------------------- /lib/dynflow/logger_adapters/formatters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/logger_adapters/formatters.rb -------------------------------------------------------------------------------- /lib/dynflow/logger_adapters/formatters/abstract.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/logger_adapters/formatters/abstract.rb -------------------------------------------------------------------------------- /lib/dynflow/logger_adapters/formatters/exception.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/logger_adapters/formatters/exception.rb -------------------------------------------------------------------------------- /lib/dynflow/logger_adapters/simple.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/logger_adapters/simple.rb -------------------------------------------------------------------------------- /lib/dynflow/middleware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/middleware.rb -------------------------------------------------------------------------------- /lib/dynflow/middleware/common/singleton.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/middleware/common/singleton.rb -------------------------------------------------------------------------------- /lib/dynflow/middleware/common/transaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/middleware/common/transaction.rb -------------------------------------------------------------------------------- /lib/dynflow/middleware/register.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/middleware/register.rb -------------------------------------------------------------------------------- /lib/dynflow/middleware/resolver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/middleware/resolver.rb -------------------------------------------------------------------------------- /lib/dynflow/middleware/stack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/middleware/stack.rb -------------------------------------------------------------------------------- /lib/dynflow/middleware/world.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/middleware/world.rb -------------------------------------------------------------------------------- /lib/dynflow/persistence.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/persistence.rb -------------------------------------------------------------------------------- /lib/dynflow/persistence_adapters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/persistence_adapters.rb -------------------------------------------------------------------------------- /lib/dynflow/persistence_adapters/abstract.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/persistence_adapters/abstract.rb -------------------------------------------------------------------------------- /lib/dynflow/persistence_adapters/sequel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/persistence_adapters/sequel.rb -------------------------------------------------------------------------------- /lib/dynflow/persistence_adapters/sequel_migrations/001_initial.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/persistence_adapters/sequel_migrations/001_initial.rb -------------------------------------------------------------------------------- /lib/dynflow/persistence_adapters/sequel_migrations/002_incremental_progress.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/persistence_adapters/sequel_migrations/002_incremental_progress.rb -------------------------------------------------------------------------------- /lib/dynflow/persistence_adapters/sequel_migrations/003_parent_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/persistence_adapters/sequel_migrations/003_parent_action.rb -------------------------------------------------------------------------------- /lib/dynflow/persistence_adapters/sequel_migrations/004_coordinator_records.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/persistence_adapters/sequel_migrations/004_coordinator_records.rb -------------------------------------------------------------------------------- /lib/dynflow/persistence_adapters/sequel_migrations/005_envelopes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/persistence_adapters/sequel_migrations/005_envelopes.rb -------------------------------------------------------------------------------- /lib/dynflow/persistence_adapters/sequel_migrations/006_fix_data_length.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/persistence_adapters/sequel_migrations/006_fix_data_length.rb -------------------------------------------------------------------------------- /lib/dynflow/persistence_adapters/sequel_migrations/007_future_execution.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/persistence_adapters/sequel_migrations/007_future_execution.rb -------------------------------------------------------------------------------- /lib/dynflow/persistence_adapters/sequel_migrations/008_rename_scheduled_plans_to_delayed_plans.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/persistence_adapters/sequel_migrations/008_rename_scheduled_plans_to_delayed_plans.rb -------------------------------------------------------------------------------- /lib/dynflow/persistence_adapters/sequel_migrations/009_fix_mysql_data_length.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/persistence_adapters/sequel_migrations/009_fix_mysql_data_length.rb -------------------------------------------------------------------------------- /lib/dynflow/persistence_adapters/sequel_migrations/010_add_execution_plans_label.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/persistence_adapters/sequel_migrations/010_add_execution_plans_label.rb -------------------------------------------------------------------------------- /lib/dynflow/persistence_adapters/sequel_migrations/011_placeholder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/persistence_adapters/sequel_migrations/011_placeholder.rb -------------------------------------------------------------------------------- /lib/dynflow/persistence_adapters/sequel_migrations/012_add_delayed_plans_serialized_args.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/persistence_adapters/sequel_migrations/012_add_delayed_plans_serialized_args.rb -------------------------------------------------------------------------------- /lib/dynflow/persistence_adapters/sequel_migrations/013_add_action_columns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/persistence_adapters/sequel_migrations/013_add_action_columns.rb -------------------------------------------------------------------------------- /lib/dynflow/persistence_adapters/sequel_migrations/014_add_step_columns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/persistence_adapters/sequel_migrations/014_add_step_columns.rb -------------------------------------------------------------------------------- /lib/dynflow/persistence_adapters/sequel_migrations/015_add_execution_plan_columns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/persistence_adapters/sequel_migrations/015_add_execution_plan_columns.rb -------------------------------------------------------------------------------- /lib/dynflow/persistence_adapters/sequel_migrations/016_add_step_queue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/persistence_adapters/sequel_migrations/016_add_step_queue.rb -------------------------------------------------------------------------------- /lib/dynflow/persistence_adapters/sequel_migrations/017_add_delayed_plan_frozen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/persistence_adapters/sequel_migrations/017_add_delayed_plan_frozen.rb -------------------------------------------------------------------------------- /lib/dynflow/persistence_adapters/sequel_migrations/018_add_uuid_column.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/persistence_adapters/sequel_migrations/018_add_uuid_column.rb -------------------------------------------------------------------------------- /lib/dynflow/persistence_adapters/sequel_migrations/019_update_mysql_time_precision.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/persistence_adapters/sequel_migrations/019_update_mysql_time_precision.rb -------------------------------------------------------------------------------- /lib/dynflow/persistence_adapters/sequel_migrations/020_drop_duplicate_indices.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/persistence_adapters/sequel_migrations/020_drop_duplicate_indices.rb -------------------------------------------------------------------------------- /lib/dynflow/persistence_adapters/sequel_migrations/021_create_output_chunks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/persistence_adapters/sequel_migrations/021_create_output_chunks.rb -------------------------------------------------------------------------------- /lib/dynflow/persistence_adapters/sequel_migrations/022_store_flows_as_msgpack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/persistence_adapters/sequel_migrations/022_store_flows_as_msgpack.rb -------------------------------------------------------------------------------- /lib/dynflow/persistence_adapters/sequel_migrations/023_sqlite_workarounds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/persistence_adapters/sequel_migrations/023_sqlite_workarounds.rb -------------------------------------------------------------------------------- /lib/dynflow/persistence_adapters/sequel_migrations/024_store_execution_plan_data_as_msgpack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/persistence_adapters/sequel_migrations/024_store_execution_plan_data_as_msgpack.rb -------------------------------------------------------------------------------- /lib/dynflow/persistence_adapters/sequel_migrations/msgpack_migration_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/persistence_adapters/sequel_migrations/msgpack_migration_helper.rb -------------------------------------------------------------------------------- /lib/dynflow/rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/rails.rb -------------------------------------------------------------------------------- /lib/dynflow/rails/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/rails/configuration.rb -------------------------------------------------------------------------------- /lib/dynflow/rails/daemon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/rails/daemon.rb -------------------------------------------------------------------------------- /lib/dynflow/round_robin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/round_robin.rb -------------------------------------------------------------------------------- /lib/dynflow/semaphores.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/semaphores.rb -------------------------------------------------------------------------------- /lib/dynflow/semaphores/abstract.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/semaphores/abstract.rb -------------------------------------------------------------------------------- /lib/dynflow/semaphores/aggregating.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/semaphores/aggregating.rb -------------------------------------------------------------------------------- /lib/dynflow/semaphores/dummy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/semaphores/dummy.rb -------------------------------------------------------------------------------- /lib/dynflow/semaphores/stateful.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/semaphores/stateful.rb -------------------------------------------------------------------------------- /lib/dynflow/serializable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/serializable.rb -------------------------------------------------------------------------------- /lib/dynflow/serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/serializer.rb -------------------------------------------------------------------------------- /lib/dynflow/serializers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/serializers.rb -------------------------------------------------------------------------------- /lib/dynflow/serializers/abstract.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/serializers/abstract.rb -------------------------------------------------------------------------------- /lib/dynflow/serializers/noop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/serializers/noop.rb -------------------------------------------------------------------------------- /lib/dynflow/stateful.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/stateful.rb -------------------------------------------------------------------------------- /lib/dynflow/telemetry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/telemetry.rb -------------------------------------------------------------------------------- /lib/dynflow/telemetry_adapters/abstract.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/telemetry_adapters/abstract.rb -------------------------------------------------------------------------------- /lib/dynflow/telemetry_adapters/dummy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/telemetry_adapters/dummy.rb -------------------------------------------------------------------------------- /lib/dynflow/telemetry_adapters/statsd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/telemetry_adapters/statsd.rb -------------------------------------------------------------------------------- /lib/dynflow/testing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/testing.rb -------------------------------------------------------------------------------- /lib/dynflow/testing/assertions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/testing/assertions.rb -------------------------------------------------------------------------------- /lib/dynflow/testing/dummy_coordinator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/testing/dummy_coordinator.rb -------------------------------------------------------------------------------- /lib/dynflow/testing/dummy_execution_plan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/testing/dummy_execution_plan.rb -------------------------------------------------------------------------------- /lib/dynflow/testing/dummy_executor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/testing/dummy_executor.rb -------------------------------------------------------------------------------- /lib/dynflow/testing/dummy_planned_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/testing/dummy_planned_action.rb -------------------------------------------------------------------------------- /lib/dynflow/testing/dummy_step.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/testing/dummy_step.rb -------------------------------------------------------------------------------- /lib/dynflow/testing/dummy_world.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/testing/dummy_world.rb -------------------------------------------------------------------------------- /lib/dynflow/testing/factories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/testing/factories.rb -------------------------------------------------------------------------------- /lib/dynflow/testing/in_thread_executor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/testing/in_thread_executor.rb -------------------------------------------------------------------------------- /lib/dynflow/testing/in_thread_world.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/testing/in_thread_world.rb -------------------------------------------------------------------------------- /lib/dynflow/testing/managed_clock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/testing/managed_clock.rb -------------------------------------------------------------------------------- /lib/dynflow/testing/mimic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/testing/mimic.rb -------------------------------------------------------------------------------- /lib/dynflow/throttle_limiter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/throttle_limiter.rb -------------------------------------------------------------------------------- /lib/dynflow/transaction_adapters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/transaction_adapters.rb -------------------------------------------------------------------------------- /lib/dynflow/transaction_adapters/abstract.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/transaction_adapters/abstract.rb -------------------------------------------------------------------------------- /lib/dynflow/transaction_adapters/active_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/transaction_adapters/active_record.rb -------------------------------------------------------------------------------- /lib/dynflow/transaction_adapters/none.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/transaction_adapters/none.rb -------------------------------------------------------------------------------- /lib/dynflow/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/utils.rb -------------------------------------------------------------------------------- /lib/dynflow/utils/indifferent_hash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/utils/indifferent_hash.rb -------------------------------------------------------------------------------- /lib/dynflow/utils/priority_queue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/utils/priority_queue.rb -------------------------------------------------------------------------------- /lib/dynflow/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module Dynflow 4 | VERSION = '1.9.3' 5 | end 6 | -------------------------------------------------------------------------------- /lib/dynflow/watchers/memory_consumption_watcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/watchers/memory_consumption_watcher.rb -------------------------------------------------------------------------------- /lib/dynflow/web.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/web.rb -------------------------------------------------------------------------------- /lib/dynflow/web/console.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/web/console.rb -------------------------------------------------------------------------------- /lib/dynflow/web/console_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/web/console_helpers.rb -------------------------------------------------------------------------------- /lib/dynflow/web/filtering_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/web/filtering_helpers.rb -------------------------------------------------------------------------------- /lib/dynflow/web/world_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/web/world_helpers.rb -------------------------------------------------------------------------------- /lib/dynflow/web_console.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/web_console.rb -------------------------------------------------------------------------------- /lib/dynflow/world.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/world.rb -------------------------------------------------------------------------------- /lib/dynflow/world/invalidation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/lib/dynflow/world/invalidation.rb -------------------------------------------------------------------------------- /test/abnormal_states_recovery_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/abnormal_states_recovery_test.rb -------------------------------------------------------------------------------- /test/action_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/action_test.rb -------------------------------------------------------------------------------- /test/activejob_adapter_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/activejob_adapter_test.rb -------------------------------------------------------------------------------- /test/batch_sub_tasks_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/batch_sub_tasks_test.rb -------------------------------------------------------------------------------- /test/bats/helpers/common.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/bats/helpers/common.bash -------------------------------------------------------------------------------- /test/bats/helpers/containers.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/bats/helpers/containers.bash -------------------------------------------------------------------------------- /test/bats/setup_suite.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/bats/setup_suite.bash -------------------------------------------------------------------------------- /test/bats/sidekiq-orchestrator.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/bats/sidekiq-orchestrator.bats -------------------------------------------------------------------------------- /test/bats/teardown_suite.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/bats/teardown_suite.bash -------------------------------------------------------------------------------- /test/clock_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/clock_test.rb -------------------------------------------------------------------------------- /test/concurrency_control_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/concurrency_control_test.rb -------------------------------------------------------------------------------- /test/coordinator_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/coordinator_test.rb -------------------------------------------------------------------------------- /test/daemon_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/daemon_test.rb -------------------------------------------------------------------------------- /test/dead_letter_silencer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/dead_letter_silencer_test.rb -------------------------------------------------------------------------------- /test/dispatcher_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/dispatcher_test.rb -------------------------------------------------------------------------------- /test/execution_plan_cleaner_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/execution_plan_cleaner_test.rb -------------------------------------------------------------------------------- /test/execution_plan_hooks_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/execution_plan_hooks_test.rb -------------------------------------------------------------------------------- /test/execution_plan_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/execution_plan_test.rb -------------------------------------------------------------------------------- /test/executor_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/executor_test.rb -------------------------------------------------------------------------------- /test/extensions_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/extensions_test.rb -------------------------------------------------------------------------------- /test/flows_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/flows_test.rb -------------------------------------------------------------------------------- /test/future_execution_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/future_execution_test.rb -------------------------------------------------------------------------------- /test/memory_cosumption_watcher_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/memory_cosumption_watcher_test.rb -------------------------------------------------------------------------------- /test/middleware_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/middleware_test.rb -------------------------------------------------------------------------------- /test/persistence_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/persistence_test.rb -------------------------------------------------------------------------------- /test/redis_locking_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/redis_locking_test.rb -------------------------------------------------------------------------------- /test/rescue_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/rescue_test.rb -------------------------------------------------------------------------------- /test/round_robin_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/round_robin_test.rb -------------------------------------------------------------------------------- /test/semaphores_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/semaphores_test.rb -------------------------------------------------------------------------------- /test/support/code_workflow_example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/support/code_workflow_example.rb -------------------------------------------------------------------------------- /test/support/dummy_example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/support/dummy_example.rb -------------------------------------------------------------------------------- /test/support/middleware_example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/support/middleware_example.rb -------------------------------------------------------------------------------- /test/support/rails/config/environment.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | # This is a mock 3 | -------------------------------------------------------------------------------- /test/support/rescue_example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/support/rescue_example.rb -------------------------------------------------------------------------------- /test/support/test_execution_log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/support/test_execution_log.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/testing_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/testing_test.rb -------------------------------------------------------------------------------- /test/utils_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/utils_test.rb -------------------------------------------------------------------------------- /test/v2_sub_plans_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/v2_sub_plans_test.rb -------------------------------------------------------------------------------- /test/web_console_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/web_console_test.rb -------------------------------------------------------------------------------- /test/world_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/test/world_test.rb -------------------------------------------------------------------------------- /web/assets/images/logo-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/web/assets/images/logo-square.png -------------------------------------------------------------------------------- /web/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/web/assets/javascripts/application.js -------------------------------------------------------------------------------- /web/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/web/assets/stylesheets/application.css -------------------------------------------------------------------------------- /web/assets/vendor/bootstrap/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/web/assets/vendor/bootstrap/config.json -------------------------------------------------------------------------------- /web/assets/vendor/bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/web/assets/vendor/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /web/assets/vendor/bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/web/assets/vendor/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /web/assets/vendor/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/web/assets/vendor/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /web/assets/vendor/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/web/assets/vendor/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /web/assets/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/web/assets/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /web/assets/vendor/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/web/assets/vendor/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /web/assets/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/web/assets/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /web/assets/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/web/assets/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /web/assets/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/web/assets/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /web/assets/vendor/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/web/assets/vendor/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /web/assets/vendor/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/web/assets/vendor/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /web/assets/vendor/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/web/assets/vendor/jquery/jquery.js -------------------------------------------------------------------------------- /web/views/execution_history.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/web/views/execution_history.erb -------------------------------------------------------------------------------- /web/views/flow.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/web/views/flow.erb -------------------------------------------------------------------------------- /web/views/flow_step.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/web/views/flow_step.erb -------------------------------------------------------------------------------- /web/views/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/web/views/index.erb -------------------------------------------------------------------------------- /web/views/layout.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/web/views/layout.erb -------------------------------------------------------------------------------- /web/views/plan_step.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/web/views/plan_step.erb -------------------------------------------------------------------------------- /web/views/show.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/web/views/show.erb -------------------------------------------------------------------------------- /web/views/world_validation_result.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/web/views/world_validation_result.erb -------------------------------------------------------------------------------- /web/views/worlds.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dynflow/dynflow/HEAD/web/views/worlds.erb --------------------------------------------------------------------------------