dynflow 0.8.35 → 0.8.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +12 -11
- data/doc/pages/Gemfile +2 -0
- data/doc/pages/README.md +48 -0
- data/doc/pages/_config.yml +1 -1
- data/doc/pages/plugins/plantuml.rb +1 -1
- data/doc/pages/source/documentation/index.md +96 -1
- data/lib/dynflow/action.rb +13 -0
- data/lib/dynflow/delayed_plan.rb +13 -5
- data/lib/dynflow/execution_plan.rb +18 -0
- data/lib/dynflow/execution_plan/hooks.rb +91 -0
- data/lib/dynflow/execution_plan/steps/abstract.rb +13 -13
- data/lib/dynflow/persistence.rb +11 -0
- data/lib/dynflow/persistence_adapters/abstract.rb +8 -0
- data/lib/dynflow/persistence_adapters/sequel.rb +87 -28
- data/lib/dynflow/persistence_adapters/sequel_migrations/011_add_uuid_column.rb +61 -0
- data/lib/dynflow/persistence_adapters/sequel_migrations/012_add_delayed_plans_serialized_args.rb +8 -0
- data/lib/dynflow/persistence_adapters/sequel_migrations/013_add_action_columns.rb +16 -0
- data/lib/dynflow/persistence_adapters/sequel_migrations/014_add_step_columns.rb +13 -0
- data/lib/dynflow/persistence_adapters/sequel_migrations/015_add_execution_plan_columns.rb +18 -0
- data/lib/dynflow/serializable.rb +2 -1
- data/lib/dynflow/serializers/abstract.rb +34 -5
- data/lib/dynflow/version.rb +1 -1
- data/test/batch_sub_tasks_test.rb +3 -0
- data/test/concurrency_control_test.rb +6 -2
- data/test/execution_plan_hooks_test.rb +86 -0
- data/test/executor_test.rb +5 -2
- data/test/future_execution_test.rb +37 -0
- data/test/persistence_test.rb +144 -29
- metadata +11 -2
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dynflow
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.36
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ivan Necas
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2018-
|
12
|
+
date: 2018-03-06 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: multi_json
|
@@ -240,6 +240,7 @@ files:
|
|
240
240
|
- doc/images/screenshot.png
|
241
241
|
- doc/pages/.gitignore
|
242
242
|
- doc/pages/Gemfile
|
243
|
+
- doc/pages/README.md
|
243
244
|
- doc/pages/Rakefile
|
244
245
|
- doc/pages/_config.yml
|
245
246
|
- doc/pages/plugins/alert_block.rb
|
@@ -429,6 +430,7 @@ files:
|
|
429
430
|
- lib/dynflow/execution_history.rb
|
430
431
|
- lib/dynflow/execution_plan.rb
|
431
432
|
- lib/dynflow/execution_plan/dependency_graph.rb
|
433
|
+
- lib/dynflow/execution_plan/hooks.rb
|
432
434
|
- lib/dynflow/execution_plan/output_reference.rb
|
433
435
|
- lib/dynflow/execution_plan/steps.rb
|
434
436
|
- lib/dynflow/execution_plan/steps/abstract.rb
|
@@ -477,6 +479,11 @@ files:
|
|
477
479
|
- lib/dynflow/persistence_adapters/sequel_migrations/008_rename_scheduled_plans_to_delayed_plans.rb
|
478
480
|
- lib/dynflow/persistence_adapters/sequel_migrations/009_fix_mysql_data_length.rb
|
479
481
|
- lib/dynflow/persistence_adapters/sequel_migrations/010_add_execution_plans_label.rb
|
482
|
+
- lib/dynflow/persistence_adapters/sequel_migrations/011_add_uuid_column.rb
|
483
|
+
- lib/dynflow/persistence_adapters/sequel_migrations/012_add_delayed_plans_serialized_args.rb
|
484
|
+
- lib/dynflow/persistence_adapters/sequel_migrations/013_add_action_columns.rb
|
485
|
+
- lib/dynflow/persistence_adapters/sequel_migrations/014_add_step_columns.rb
|
486
|
+
- lib/dynflow/persistence_adapters/sequel_migrations/015_add_execution_plan_columns.rb
|
480
487
|
- lib/dynflow/rails.rb
|
481
488
|
- lib/dynflow/rails/configuration.rb
|
482
489
|
- lib/dynflow/rails/daemon.rb
|
@@ -530,6 +537,7 @@ files:
|
|
530
537
|
- test/dead_letter_silencer_test.rb
|
531
538
|
- test/dispatcher_test.rb
|
532
539
|
- test/execution_plan_cleaner_test.rb
|
540
|
+
- test/execution_plan_hooks_test.rb
|
533
541
|
- test/execution_plan_test.rb
|
534
542
|
- test/executor_test.rb
|
535
543
|
- test/future_execution_test.rb
|
@@ -610,6 +618,7 @@ test_files:
|
|
610
618
|
- test/dead_letter_silencer_test.rb
|
611
619
|
- test/dispatcher_test.rb
|
612
620
|
- test/execution_plan_cleaner_test.rb
|
621
|
+
- test/execution_plan_hooks_test.rb
|
613
622
|
- test/execution_plan_test.rb
|
614
623
|
- test/executor_test.rb
|
615
624
|
- test/future_execution_test.rb
|