cpee 1.4.0 → 1.4.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/cpee.gemspec +1 -1
- data/server/handlerwrappers/default.rb +2 -6
- data/server/handlerwrappers/soap.rb +0 -4
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b642cdcb1a57cb3d1ab2757db1c2b7fd1f831145
|
|
4
|
+
data.tar.gz: bed1651acfbdc200dea5079a8d05257869467fa7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '033608dc634b8d0c533223f4d6c155ab5f0e864ebb2c53d82dd37070d1f89fd39fa874948b5364a3f3d8186f800e71f4bd291cef7ebd5d26e19bd95784479240'
|
|
7
|
+
data.tar.gz: 998bb6a75f269f39920abc7552a7bd9d8e1abc199c3e58b87e8b68eb5e99810357fe6dad32932321d3773f82f35cba340b7afc7ac7c4df9d439e134f3a27313f
|
data/cpee.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = "cpee"
|
|
3
|
-
s.version = "1.4.
|
|
3
|
+
s.version = "1.4.1"
|
|
4
4
|
s.platform = Gem::Platform::RUBY
|
|
5
5
|
s.license = "LGPL-3.0"
|
|
6
6
|
s.summary = "Preliminary release of cloud process execution engine (cpee). If you just need workflow execution, without a rest/xmpp service exposing it, then use WEEL"
|
|
@@ -88,10 +88,6 @@ class DefaultHandlerWrapper < WEEL::HandlerWrapperBase
|
|
|
88
88
|
@label = parameters[:label]
|
|
89
89
|
end #}}}
|
|
90
90
|
|
|
91
|
-
def activity_result_status # {{{
|
|
92
|
-
WEEL::Status.new(1, "everything okay")
|
|
93
|
-
end # }}}
|
|
94
|
-
|
|
95
91
|
def activity_result_value # {{{
|
|
96
92
|
@handler_returnValue
|
|
97
93
|
end # }}}
|
|
@@ -127,11 +123,11 @@ class DefaultHandlerWrapper < WEEL::HandlerWrapperBase
|
|
|
127
123
|
end
|
|
128
124
|
unless changed_dataelements.nil?
|
|
129
125
|
@controller.serialize_dataelements!
|
|
130
|
-
@controller.notify("dataelements/change", :endpoint => @handler_endpoint, :label => @label, :instance_name => @controller.info, :instance => @controller.instance, :instance_uuid => @controller.uuid, :activity => @handler_position, :changed => changed_dataelements, :values => dataelements
|
|
126
|
+
@controller.notify("dataelements/change", :endpoint => @handler_endpoint, :label => @label, :instance_name => @controller.info, :instance => @controller.instance, :instance_uuid => @controller.uuid, :activity => @handler_position, :changed => changed_dataelements, :values => dataelements)
|
|
131
127
|
end
|
|
132
128
|
unless changed_endpoints.nil?
|
|
133
129
|
@controller.serialize_endpoints!
|
|
134
|
-
@controller.notify("endpoints/change", :endpoint => @handler_endpoint, :label => @label, :instance_name => @controller.info, :instance => @controller.instance, :instance_uuid => @controller.uuid, :activity => @handler_position, :changed => changed_endpoints, :values => endpoints
|
|
130
|
+
@controller.notify("endpoints/change", :endpoint => @handler_endpoint, :label => @label, :instance_name => @controller.info, :instance => @controller.instance, :instance_uuid => @controller.uuid, :activity => @handler_position, :changed => changed_endpoints, :values => endpoints)
|
|
135
131
|
end
|
|
136
132
|
end # }}}
|
|
137
133
|
|
|
@@ -70,10 +70,6 @@ class SOAPHandlerWrapper < WEEL::HandlerWrapperBase
|
|
|
70
70
|
@handler_continue.continue
|
|
71
71
|
end # }}}
|
|
72
72
|
|
|
73
|
-
def activity_result_status # {{{
|
|
74
|
-
WEEL::Status.new(1, "everything okay")
|
|
75
|
-
end # }}}
|
|
76
|
-
|
|
77
73
|
def activity_result_value # {{{
|
|
78
74
|
@handler_returnValue
|
|
79
75
|
end # }}}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cpee
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.4.
|
|
4
|
+
version: 1.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Juergen eTM Mangler
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: tools
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date: 2018-04-
|
|
14
|
+
date: 2018-04-25 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: riddl
|