weel 1.99.132 → 1.99.134
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/lib/weel.rb +5 -1
- data/weel.gemspec +1 -1
- metadata +3 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bc114e3f6cdd9e1897b14961c0fc7c753b2cc323d390862d00d5b2abf2b2efb2
|
4
|
+
data.tar.gz: b7bf5a520ebf6e9137862fb2ffb9aefd83e32b91f3b3eaaed610480a2c9008db
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: adbc4d4be5962fa887f4d619829f0ff69c099418290e53f93e902b0ffe0469190aec8085d47da4ac7c243317240707c27d0c522d1a5b5edc81fa5e252e49cc4e
|
7
|
+
data.tar.gz: 80081ad94eb01f66494722f1107110794ee0e1598881511ea3e0671d9807beb614102174d78d3f19a4dc8a2454786c338db839afd339241664b2a2053ff021bb
|
data/lib/weel.rb
CHANGED
@@ -779,10 +779,13 @@ class WEEL
|
|
779
779
|
connectionwrapper = @__weel_connectionwrapper.new @__weel_connectionwrapper_args
|
780
780
|
connectionwrapper.test_condition(@__weel_data,@__weel_endpoints,Thread.current[:local],connectionwrapper.additional,condition,args)
|
781
781
|
rescue NameError => err # don't look into it, or it will explode
|
782
|
-
# if you access $! here, BOOOM
|
783
782
|
self.__weel_state = :stopping
|
784
783
|
@__weel_connectionwrapper::inform_syntax_error(@__weel_connectionwrapper_args,Exception.new("protect_yield: `#{err.name}` is not a thing that can be used. Maybe it is meant to be a string and you forgot quotes?"),nil)
|
785
784
|
nil
|
785
|
+
rescue WEEL::Signal::Error => err
|
786
|
+
self.__weel_state = :stopping
|
787
|
+
@__weel_connectionwrapper::inform_syntax_error(@__weel_connectionwrapper_args,err,nil)
|
788
|
+
nil
|
786
789
|
rescue => err
|
787
790
|
self.__weel_state = :stopping
|
788
791
|
@__weel_connectionwrapper::inform_syntax_error(@__weel_connectionwrapper_args,err,nil)
|
@@ -947,6 +950,7 @@ class WEEL
|
|
947
950
|
wp.detail = :unmark
|
948
951
|
end
|
949
952
|
rescue Signal::NoLongerNecessary
|
953
|
+
connectionwrapper.activity_stop
|
950
954
|
connectionwrapper.inform_activity_cancelled
|
951
955
|
connectionwrapper.inform_activity_done
|
952
956
|
@__weel_positions.delete wp
|
data/weel.gemspec
CHANGED
metadata
CHANGED
@@ -1,15 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: weel
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.99.
|
4
|
+
version: 1.99.134
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Juergen eTM Mangler
|
8
8
|
- Gerhard Stuermer
|
9
|
-
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2025-06-27 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: test-unit
|
@@ -85,7 +84,6 @@ homepage: http://cpee.org/
|
|
85
84
|
licenses:
|
86
85
|
- LGPL-3.0-or-later
|
87
86
|
metadata: {}
|
88
|
-
post_install_message:
|
89
87
|
rdoc_options: []
|
90
88
|
require_paths:
|
91
89
|
- lib
|
@@ -100,8 +98,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
100
98
|
- !ruby/object:Gem::Version
|
101
99
|
version: '0'
|
102
100
|
requirements: []
|
103
|
-
rubygems_version: 3.
|
104
|
-
signing_key:
|
101
|
+
rubygems_version: 3.6.2
|
105
102
|
specification_version: 4
|
106
103
|
summary: Workflow Execution Engine Library (WEEL)
|
107
104
|
test_files:
|