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.
- checksums.yaml +4 -4
- data/lib/weel.rb +2 -2
- data/weel.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f0405b0d78d17afd88497d992ce42aa2dd1be508c51988926a532ce1ac688c69
|
|
4
|
+
data.tar.gz: b0913081c1722962f5657f4a99fa99bb84d67629686c6def539c45df858d94e6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
|
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(
|
|
599
|
+
__weel_protect_yield(ReadHash.new(local),&block)
|
|
600
600
|
end
|
|
601
601
|
|
|
602
602
|
branch_parent[:mutex].synchronize do
|
data/weel.gemspec
CHANGED