weel 1.99.13 → 1.99.14
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 +7 -0
- data/lib/weel.rb +7 -10
- data/weel.gemspec +1 -1
- metadata +60 -62
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 4c3d34e1656c4cb01435d8ddcb5f3a68a2d2dfc7
|
4
|
+
data.tar.gz: f2c9a6bca2e1047cc672b15db7b405b4c39a0df6
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: d11235b99b9a814a36c1d6e94c3b54af70fedf824402f9e0d416de68664f30df325b566cd67f41de4e193fde362fe873c601677416712f2667dd8921a4f2e4ad
|
7
|
+
data.tar.gz: 75458c2949fcfa5261a0a60c438ea61a6da160136cf807d356703e1bc947a437a44f0d0aafc15f9fb35cba79c031a697831f07ea9a0f53d6faf71a04b4f24c86
|
data/lib/weel.rb
CHANGED
@@ -49,13 +49,6 @@ class WEEL
|
|
49
49
|
@dslr = DSLRealization.new
|
50
50
|
@dslr.__weel_handlerwrapper_args = args
|
51
51
|
|
52
|
-
### 1.8
|
53
|
-
initialize_search if methods.include?('initialize_search')
|
54
|
-
initialize_data if methods.include?('initialize_data')
|
55
|
-
initialize_endpoints if methods.include?('initialize_endpoints')
|
56
|
-
initialize_handlerwrapper if methods.include?('initialize_handlerwrapper')
|
57
|
-
initialize_control if methods.include?('initialize_control')
|
58
|
-
### 1.9
|
59
52
|
initialize_search if methods.include?(:initialize_search)
|
60
53
|
initialize_data if methods.include?(:initialize_data)
|
61
54
|
initialize_endpoints if methods.include?(:initialize_endpoints)
|
@@ -203,7 +196,7 @@ class WEEL
|
|
203
196
|
def inform_activity_failed(err); end
|
204
197
|
|
205
198
|
def inform_syntax_error(err,code); end
|
206
|
-
def inform_manipulate_change(status,data,endpoints); end
|
199
|
+
def inform_manipulate_change(status,changed_data,changed_endpoints,data,endpoints); end
|
207
200
|
def inform_position_change(ipc); end
|
208
201
|
def inform_state_change(newstate); end
|
209
202
|
|
@@ -592,7 +585,9 @@ class WEEL
|
|
592
585
|
handlerwrapper.inform_manipulate_change(
|
593
586
|
((mr && mr.changed_status) ? @__weel_status : nil),
|
594
587
|
((mr && mr.changed_data.any?) ? mr.changed_data.uniq : nil),
|
595
|
-
((mr && mr.changed_endpoints.any?) ? mr.changed_endpoints.uniq : nil)
|
588
|
+
((mr && mr.changed_endpoints.any?) ? mr.changed_endpoints.uniq : nil),
|
589
|
+
@__weel_data,
|
590
|
+
@__weel_endpoints
|
596
591
|
)
|
597
592
|
handlerwrapper.inform_activity_done
|
598
593
|
wp.detail = :after
|
@@ -666,7 +661,9 @@ class WEEL
|
|
666
661
|
handlerwrapper.inform_manipulate_change(
|
667
662
|
(mr.changed_status ? @__weel_status : nil),
|
668
663
|
(mr.changed_data.any? ? mr.changed_data.uniq : nil),
|
669
|
-
(mr.changed_endpoints.any? ? mr.changed_endpoints.uniq : nil)
|
664
|
+
(mr.changed_endpoints.any? ? mr.changed_endpoints.uniq : nil),
|
665
|
+
@__weel_data,
|
666
|
+
@__weel_endpoints
|
670
667
|
)
|
671
668
|
end
|
672
669
|
end while wp.passthrough.nil? && waitingresult == Signal::Again
|
data/weel.gemspec
CHANGED
metadata
CHANGED
@@ -1,8 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: weel
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.99.
|
5
|
-
prerelease:
|
4
|
+
version: 1.99.14
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Juergen eTM Mangler
|
@@ -10,7 +9,7 @@ authors:
|
|
10
9
|
autorequire:
|
11
10
|
bindir: bin
|
12
11
|
cert_chain: []
|
13
|
-
date: 2014-
|
12
|
+
date: 2014-07-09 00:00:00.000000000 Z
|
14
13
|
dependencies: []
|
15
14
|
description: see http://cpee.org
|
16
15
|
email: juergen.mangler@gmail.com
|
@@ -19,109 +18,108 @@ extensions: []
|
|
19
18
|
extra_rdoc_files:
|
20
19
|
- README
|
21
20
|
files:
|
22
|
-
-
|
23
|
-
- example/SimpleWorkflow.rb
|
24
|
-
- example/runme.rb
|
25
|
-
- lib/weel.rb
|
21
|
+
- AUTHORS
|
26
22
|
- COPYING
|
27
23
|
- Changelog
|
28
24
|
- FEATURES
|
29
25
|
- INSTALL
|
30
|
-
- Rakefile
|
31
|
-
- weel.gemspec
|
32
26
|
- README
|
33
|
-
-
|
34
|
-
-
|
35
|
-
-
|
36
|
-
-
|
27
|
+
- Rakefile
|
28
|
+
- example/SimpleHandlerWrapper.rb
|
29
|
+
- example/SimpleWorkflow.rb
|
30
|
+
- example/runme.rb
|
31
|
+
- lib/weel.rb
|
37
32
|
- test/ContinueTest.rb
|
38
33
|
- test/README
|
34
|
+
- test/SimHandlerWrapper.rb
|
35
|
+
- test/TestHandlerWrapper.rb
|
36
|
+
- test/TestMixin.rb
|
39
37
|
- test/TestWorkflow.rb
|
40
|
-
- test/
|
41
|
-
- test/wfp_adv_branching/tc_structured_discriminator.rb
|
42
|
-
- test/wfp_adv_branching/tc_multichoice_structuredsynchronizingmerge.rb
|
43
|
-
- test/wfp_adv_branching/tc_multimerge.rb
|
44
|
-
- test/wfp_adv_branching/tc_generalsynchronizingmerge.rb
|
45
|
-
- test/wfp_adv_branching/tc_localsynchronizingmerge.rb
|
46
|
-
- test/wfp_adv_branching/tc_generalizedjoin.rb
|
47
|
-
- test/wfp_adv_branching/tc_threadmerge.rb
|
48
|
-
- test/wfp_adv_branching/tc_structured_partial_join.rb
|
49
|
-
- test/wfp_iteration/tc_structuredloop.rb
|
38
|
+
- test/basic/tc_choose.rb
|
50
39
|
- test/basic/tc_codereplace.rb
|
40
|
+
- test/basic/tc_data.rb
|
51
41
|
- test/basic/tc_endpoint.rb
|
52
42
|
- test/basic/tc_handler.rb
|
53
43
|
- test/basic/tc_parallel.rb
|
54
44
|
- test/basic/tc_search.rb
|
55
45
|
- test/basic/tc_state.rb
|
56
|
-
- test/basic/tc_choose.rb
|
57
|
-
- test/basic/tc_data.rb
|
58
46
|
- test/basic/tc_wf_control.rb
|
59
|
-
- test/
|
47
|
+
- test/complex/tc_generalsynchonizingmerge_loopsearch.rb
|
48
|
+
- test/complex/tc_parallel_stop.rb
|
60
49
|
- test/exec/tc_again.rb
|
61
|
-
- test/
|
62
|
-
- test/
|
50
|
+
- test/exec/tc_exec.rb
|
51
|
+
- test/wfp_adv_branching/tc_generalizedjoin.rb
|
52
|
+
- test/wfp_adv_branching/tc_generalsynchronizingmerge.rb
|
53
|
+
- test/wfp_adv_branching/tc_localsynchronizingmerge.rb
|
54
|
+
- test/wfp_adv_branching/tc_multichoice_structuredsynchronizingmerge.rb
|
55
|
+
- test/wfp_adv_branching/tc_multimerge.rb
|
56
|
+
- test/wfp_adv_branching/tc_structured_discriminator.rb
|
57
|
+
- test/wfp_adv_branching/tc_structured_partial_join.rb
|
58
|
+
- test/wfp_adv_branching/tc_threadmerge.rb
|
59
|
+
- test/wfp_adv_branching/tc_threadsplit.rb
|
63
60
|
- test/wfp_basic/tc_exclusivechoice_simplemerge.rb
|
64
|
-
- test/
|
61
|
+
- test/wfp_basic/tc_parallelsplit_synchronization.rb
|
62
|
+
- test/wfp_basic/tc_sequence.rb
|
63
|
+
- test/wfp_iteration/tc_structuredloop.rb
|
65
64
|
- test/wfp_state_based/tc_deferredchoice.rb
|
66
|
-
- test/
|
67
|
-
-
|
65
|
+
- test/wfp_state_based/tc_interleavedparallelrouting.rb
|
66
|
+
- weel.gemspec
|
68
67
|
homepage: http://cpee.org/
|
69
68
|
licenses:
|
70
69
|
- LGPL-3
|
70
|
+
metadata: {}
|
71
71
|
post_install_message:
|
72
72
|
rdoc_options: []
|
73
73
|
require_paths:
|
74
74
|
- lib
|
75
75
|
required_ruby_version: !ruby/object:Gem::Requirement
|
76
|
-
none: false
|
77
76
|
requirements:
|
78
|
-
- -
|
77
|
+
- - ">="
|
79
78
|
- !ruby/object:Gem::Version
|
80
79
|
version: 1.9.3
|
81
80
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
82
|
-
none: false
|
83
81
|
requirements:
|
84
|
-
- -
|
82
|
+
- - ">="
|
85
83
|
- !ruby/object:Gem::Version
|
86
84
|
version: '0'
|
87
85
|
requirements: []
|
88
86
|
rubyforge_project:
|
89
|
-
rubygems_version:
|
87
|
+
rubygems_version: 2.2.2
|
90
88
|
signing_key:
|
91
|
-
specification_version:
|
89
|
+
specification_version: 4
|
92
90
|
summary: Preliminary release of the Workflow Execution Engine Library (WEEL)
|
93
91
|
test_files:
|
94
|
-
- test/SimHandlerWrapper.rb
|
95
|
-
- test/TestMixin.rb
|
96
92
|
- test/TestHandlerWrapper.rb
|
93
|
+
- test/SimHandlerWrapper.rb
|
97
94
|
- test/ContinueTest.rb
|
95
|
+
- test/TestMixin.rb
|
98
96
|
- test/README
|
99
97
|
- test/TestWorkflow.rb
|
100
|
-
- test/
|
101
|
-
- test/
|
102
|
-
- test/
|
103
|
-
- test/
|
104
|
-
- test/
|
105
|
-
- test/
|
106
|
-
- test/
|
107
|
-
- test/
|
108
|
-
- test/wfp_adv_branching/tc_structured_partial_join.rb
|
109
|
-
- test/wfp_iteration/tc_structuredloop.rb
|
98
|
+
- test/complex/tc_parallel_stop.rb
|
99
|
+
- test/complex/tc_generalsynchonizingmerge_loopsearch.rb
|
100
|
+
- test/wfp_state_based/tc_interleavedparallelrouting.rb
|
101
|
+
- test/wfp_state_based/tc_deferredchoice.rb
|
102
|
+
- test/wfp_basic/tc_parallelsplit_synchronization.rb
|
103
|
+
- test/wfp_basic/tc_sequence.rb
|
104
|
+
- test/wfp_basic/tc_exclusivechoice_simplemerge.rb
|
105
|
+
- test/basic/tc_data.rb
|
110
106
|
- test/basic/tc_codereplace.rb
|
111
|
-
- test/basic/tc_endpoint.rb
|
112
|
-
- test/basic/tc_handler.rb
|
113
|
-
- test/basic/tc_parallel.rb
|
114
|
-
- test/basic/tc_search.rb
|
115
107
|
- test/basic/tc_state.rb
|
116
|
-
- test/basic/tc_choose.rb
|
117
|
-
- test/basic/tc_data.rb
|
118
108
|
- test/basic/tc_wf_control.rb
|
109
|
+
- test/basic/tc_choose.rb
|
110
|
+
- test/basic/tc_search.rb
|
111
|
+
- test/basic/tc_handler.rb
|
112
|
+
- test/basic/tc_endpoint.rb
|
113
|
+
- test/basic/tc_parallel.rb
|
114
|
+
- test/wfp_iteration/tc_structuredloop.rb
|
119
115
|
- test/exec/tc_exec.rb
|
120
116
|
- test/exec/tc_again.rb
|
121
|
-
- test/
|
122
|
-
- test/
|
123
|
-
- test/
|
124
|
-
- test/
|
125
|
-
- test/
|
126
|
-
- test/
|
127
|
-
- test/
|
117
|
+
- test/wfp_adv_branching/tc_threadsplit.rb
|
118
|
+
- test/wfp_adv_branching/tc_generalizedjoin.rb
|
119
|
+
- test/wfp_adv_branching/tc_structured_partial_join.rb
|
120
|
+
- test/wfp_adv_branching/tc_multichoice_structuredsynchronizingmerge.rb
|
121
|
+
- test/wfp_adv_branching/tc_threadmerge.rb
|
122
|
+
- test/wfp_adv_branching/tc_generalsynchronizingmerge.rb
|
123
|
+
- test/wfp_adv_branching/tc_localsynchronizingmerge.rb
|
124
|
+
- test/wfp_adv_branching/tc_structured_discriminator.rb
|
125
|
+
- test/wfp_adv_branching/tc_multimerge.rb
|