dynflow 1.7.0 → 1.8.1
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/dynflow.gemspec +1 -1
- data/examples/sub_plans_v2.rb +75 -0
- data/lib/dynflow/action/v2/with_sub_plans.rb +220 -0
- data/lib/dynflow/action/v2.rb +9 -0
- data/lib/dynflow/action.rb +1 -0
- data/lib/dynflow/version.rb +1 -1
- data/test/v2_sub_plans_test.rb +189 -0
- data/web/assets/vendor/jquery/jquery.js +7942 -7033
- metadata +15 -10
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dynflow
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ivan Necas
|
8
8
|
- Petr Chalupa
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2023-
|
12
|
+
date: 2023-11-13 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: multi_json
|
@@ -147,16 +147,16 @@ dependencies:
|
|
147
147
|
name: minitest
|
148
148
|
requirement: !ruby/object:Gem::Requirement
|
149
149
|
requirements:
|
150
|
-
- - "
|
150
|
+
- - "<"
|
151
151
|
- !ruby/object:Gem::Version
|
152
|
-
version: '
|
152
|
+
version: '5.19'
|
153
153
|
type: :development
|
154
154
|
prerelease: false
|
155
155
|
version_requirements: !ruby/object:Gem::Requirement
|
156
156
|
requirements:
|
157
|
-
- - "
|
157
|
+
- - "<"
|
158
158
|
- !ruby/object:Gem::Version
|
159
|
-
version: '
|
159
|
+
version: '5.19'
|
160
160
|
- !ruby/object:Gem::Dependency
|
161
161
|
name: minitest-reporters
|
162
162
|
requirement: !ruby/object:Gem::Requirement
|
@@ -419,6 +419,7 @@ files:
|
|
419
419
|
- examples/singletons.rb
|
420
420
|
- examples/sub_plan_concurrency_control.rb
|
421
421
|
- examples/sub_plans.rb
|
422
|
+
- examples/sub_plans_v2.rb
|
422
423
|
- examples/termination.rb
|
423
424
|
- extras/expand/Dockerfile
|
424
425
|
- extras/expand/README.md
|
@@ -437,6 +438,8 @@ files:
|
|
437
438
|
- lib/dynflow/action/singleton.rb
|
438
439
|
- lib/dynflow/action/suspended.rb
|
439
440
|
- lib/dynflow/action/timeouts.rb
|
441
|
+
- lib/dynflow/action/v2.rb
|
442
|
+
- lib/dynflow/action/v2/with_sub_plans.rb
|
440
443
|
- lib/dynflow/action/with_bulk_sub_plans.rb
|
441
444
|
- lib/dynflow/action/with_polling_sub_plans.rb
|
442
445
|
- lib/dynflow/action/with_sub_plans.rb
|
@@ -632,6 +635,7 @@ files:
|
|
632
635
|
- test/test_helper.rb
|
633
636
|
- test/testing_test.rb
|
634
637
|
- test/utils_test.rb
|
638
|
+
- test/v2_sub_plans_test.rb
|
635
639
|
- test/web_console_test.rb
|
636
640
|
- test/world_test.rb
|
637
641
|
- web/assets/images/logo-square.png
|
@@ -663,7 +667,7 @@ homepage: https://github.com/Dynflow/dynflow
|
|
663
667
|
licenses:
|
664
668
|
- MIT
|
665
669
|
metadata: {}
|
666
|
-
post_install_message:
|
670
|
+
post_install_message:
|
667
671
|
rdoc_options: []
|
668
672
|
require_paths:
|
669
673
|
- lib
|
@@ -678,8 +682,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
678
682
|
- !ruby/object:Gem::Version
|
679
683
|
version: '0'
|
680
684
|
requirements: []
|
681
|
-
rubygems_version: 3.
|
682
|
-
signing_key:
|
685
|
+
rubygems_version: 3.1.6
|
686
|
+
signing_key:
|
683
687
|
specification_version: 4
|
684
688
|
summary: DYNamic workFLOW engine
|
685
689
|
test_files:
|
@@ -716,5 +720,6 @@ test_files:
|
|
716
720
|
- test/test_helper.rb
|
717
721
|
- test/testing_test.rb
|
718
722
|
- test/utils_test.rb
|
723
|
+
- test/v2_sub_plans_test.rb
|
719
724
|
- test/web_console_test.rb
|
720
725
|
- test/world_test.rb
|