weel 1.99.109 → 1.99.110
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 +7 -9
- data/weel.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3ccaab8c3ceb95f2369efa6d80dc9e3f8a70bcb4d7dc064b90f4af761813c9c4
|
|
4
|
+
data.tar.gz: 63f6d510c1b0603b899269a70ef2224349b2e8a16d8c6ea93032df63d410c34d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 86f990fd9e957fc14fc444f9512a78e7501f90f5f9278fb9b71388d76ec361d6acb3d6416c7a3ea609b1a4c5d19bdac9dac49fa3e11118c8c59fa78c036756cb
|
|
7
|
+
data.tar.gz: a27c4abd6080ab0371ba6be2ff0de946169392f59362e83781b239e91ccd112dfd323a9e67304d204ab2b57356a44026165d406e414bda33a1862db7f49b1271
|
data/lib/weel.rb
CHANGED
|
@@ -360,13 +360,13 @@ class WEEL
|
|
|
360
360
|
end # }}}
|
|
361
361
|
|
|
362
362
|
class Position # {{{
|
|
363
|
-
attr_reader :position
|
|
364
|
-
attr_accessor :detail, :passthrough
|
|
365
|
-
def initialize(position, detail=:at, passthrough=nil) # :at or :after or :unmark
|
|
363
|
+
attr_reader :position, :uuid
|
|
364
|
+
attr_accessor :detail, :passthrough
|
|
365
|
+
def initialize(position, uuid, detail=:at, passthrough=nil) # :at or :after or :unmark
|
|
366
366
|
@position = position
|
|
367
367
|
@detail = detail
|
|
368
|
+
@uuid = uuid
|
|
368
369
|
@passthrough = passthrough
|
|
369
|
-
@uuid = 0
|
|
370
370
|
end
|
|
371
371
|
def as_json(*)
|
|
372
372
|
jsn = { 'position' => @position, 'uuid' => @uuid }
|
|
@@ -729,6 +729,7 @@ class WEEL
|
|
|
729
729
|
end #}}}
|
|
730
730
|
def stop(position) #{{{
|
|
731
731
|
searchmode = __weel_is_in_search_mode(position)
|
|
732
|
+
|
|
732
733
|
return if searchmode
|
|
733
734
|
return if self.__weel_state == :stopping || self.__weel_state == :finishing || self.__weel_state == :stopped || Thread.current[:nolongernecessary]
|
|
734
735
|
|
|
@@ -799,11 +800,10 @@ class WEEL
|
|
|
799
800
|
end
|
|
800
801
|
wp = if branch[:branch_search_now] == true
|
|
801
802
|
branch[:branch_search_now] = false
|
|
802
|
-
WEEL::Position.new(position, skip ? :after : :at, @__weel_search_positions[position]&.passthrough)
|
|
803
|
+
WEEL::Position.new(position, uuid, skip ? :after : :at, @__weel_search_positions[position]&.passthrough)
|
|
803
804
|
else
|
|
804
|
-
WEEL::Position.new(position, skip ? :after : :at)
|
|
805
|
+
WEEL::Position.new(position, uuid, skip ? :after : :at)
|
|
805
806
|
end
|
|
806
|
-
wp.uuid = uuid
|
|
807
807
|
ipc[skip ? :after : :at] = [wp]
|
|
808
808
|
|
|
809
809
|
@__weel_search_positions.delete(position)
|
|
@@ -915,8 +915,6 @@ class WEEL
|
|
|
915
915
|
update
|
|
916
916
|
elsif waitingresult == WEEL::Signal::Salvage
|
|
917
917
|
salvage || raise('HTTP Error. The service return status was not between 200 and 300.')
|
|
918
|
-
elsif waitingresult == WEEL::Signal::Stop
|
|
919
|
-
self.__weel_state = :stopping
|
|
920
918
|
else
|
|
921
919
|
finalize
|
|
922
920
|
end
|
data/weel.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.110
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Juergen eTM Mangler
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2023-06-
|
|
12
|
+
date: 2023-06-08 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: test-unit
|
|
@@ -101,7 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
101
101
|
- !ruby/object:Gem::Version
|
|
102
102
|
version: '0'
|
|
103
103
|
requirements: []
|
|
104
|
-
rubygems_version: 3.
|
|
104
|
+
rubygems_version: 3.4.10
|
|
105
105
|
signing_key:
|
|
106
106
|
specification_version: 4
|
|
107
107
|
summary: Workflow Execution Engine Library (WEEL)
|