cpee 1.3.161 → 1.3.162
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/cpee.gemspec +1 -1
- data/lib/cpee/processtransformation/bpmn2.rb +1 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7a69d9722b4d2674bd56d65b177da986eaf82df4
|
4
|
+
data.tar.gz: c106f55be3e84d2cd416d938b65e5117c389c0e8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a94e6bc819ddab615e2881bba6b2abfdd454e80934c5708988ce9e37f0ba611d0ed950c63c95de783351dcc25cdfe1bc67d7331c3c2df848adc0f665735026c4
|
7
|
+
data.tar.gz: 024293c77010aa00b13505df466e2f3c2cc3a3cfe214cb4331c0614e7adc325ceeaa2faa57b09f2c81b721c97cdcde533e833454d2ecb8ece2a86dfe9d267f34
|
data/cpee.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = "cpee"
|
3
|
-
s.version = "1.3.
|
3
|
+
s.version = "1.3.162"
|
4
4
|
s.platform = Gem::Platform::RUBY
|
5
5
|
s.license = "LGPL-3"
|
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"
|
@@ -223,9 +223,7 @@ module CPEE
|
|
223
223
|
### duplicate because we need it later to remove all the shit from traces
|
224
224
|
lops = loops.dup
|
225
225
|
### remove the exclusive gateway because we no longer need it
|
226
|
-
|
227
|
-
lops.add_breaks(self.object_id,node.type == :exclusiveGateway)
|
228
|
-
end
|
226
|
+
lops.add_breaks(self.object_id,node.type == :exclusiveGateway)
|
229
227
|
traces.remove(loops)
|
230
228
|
if node.type == :exclusiveGateway
|
231
229
|
lops.shift_all
|