weel 1.99.149 → 1.99.151

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/weel.rb +2 -2
  3. data/weel.gemspec +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 75f93b76bf6a052ab4599ab858f7fe6af5ffcb694c09a4d37a334dbafe7f2382
4
- data.tar.gz: 59c5301f495c1d6ab3ee162b7dfcdd62e1cffc8224b2215d0591668e67045af8
3
+ metadata.gz: f0405b0d78d17afd88497d992ce42aa2dd1be508c51988926a532ce1ac688c69
4
+ data.tar.gz: b0913081c1722962f5657f4a99fa99bb84d67629686c6def539c45df858d94e6
5
5
  SHA512:
6
- metadata.gz: b67b945afbda1ea61fa806746768fe43d9dc92eb15749690cfb98a019e49d284a3edcce595d45d96f44569210c26f93a92023ed26bbbad9d0d7e893b053788de
7
- data.tar.gz: eeebb997bbeb33b2304db64c84ca2e29a5dc478e70bbccdb3539eacc4e185fbd8f50addcc051285be41d17867730c44fa574338c93b49b72117013226f24b26c
6
+ metadata.gz: 03bce06826853dffd3757d7c1a02d92126bae53aa9ae835208d5594b01824a2a77f1bf0020fadd2cef07e9103641712ce1f20fab7ec9985fac46bf91a3e3c230
7
+ data.tar.gz: 72efa2dce42643370ec6de96f7451602c0f35854a61b9353d1a00c44328e7e971d8c891575f34826ac8611f19891d5ce9172353598845fdf280beaa27c722745
data/lib/weel.rb CHANGED
@@ -574,7 +574,7 @@ class WEEL
574
574
  return if self.__weel_state == :stopping || self.__weel_state == :finishing || self.__weel_state == :stopped || Thread.current[:nolongernecessary]
575
575
  branch_parent = Thread.current
576
576
 
577
- branch_parent[:branches] << Thread.new(data) do |*local|
577
+ branch_parent[:branches] << Thread.new(data) do |local|
578
578
  Thread.current.abort_on_exception = true
579
579
  Thread.current[:branch_search] = @__weel_search_positions.any?
580
580
  Thread.current[:branch_parent] = branch_parent
@@ -596,7 +596,7 @@ class WEEL
596
596
  Thread.current[:start_event].wait unless self.__weel_state == :stopping || self.__weel_state == :stopped || self.__weel_state == :finishing
597
597
 
598
598
  unless self.__weel_state == :stopping || self.__weel_state == :finishing || self.__weel_state == :stopped || Thread.current[:nolongernecessary]
599
- __weel_protect_yield(*local, &block)
599
+ __weel_protect_yield(ReadHash.new(local),&block)
600
600
  end
601
601
 
602
602
  branch_parent[:mutex].synchronize do
data/weel.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "weel"
3
- s.version = "1.99.149"
3
+ s.version = "1.99.151"
4
4
  s.platform = Gem::Platform::RUBY
5
5
  s.license = "LGPL-3.0-or-later"
6
6
  s.summary = "Workflow Execution Engine Library (WEEL)"
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.149
4
+ version: 1.99.151
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juergen eTM Mangler