process-group 1.2.2 → 1.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/process/group.rb +1 -1
- data/lib/process/group/version.rb +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: a2ef7e85dc264aa4d6254170467cd4fc1e47d2c5f552b3c55528370142526452
|
4
|
+
data.tar.gz: 7e8d6ccb53689d31a427484cfab31bb783a6896de2208c2780f664f3b6e5e883
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2106bb6e1e7f2f7f20a63781d82b95786305b53005bdff44cd0bdc5e1a2ff13c6efefc26c715f3d76919b683309afac6016e18dbdbc374afb736a36c9b1c4a1c
|
7
|
+
data.tar.gz: 8e96440ab717809e09c06f11ea3e9bb8596f31613804b04a11a84266a55008fe22d42a47129798062cad0ebc9dd54dc3ea0652664a36b535a0cc3ae4d4f1c1af
|
data/lib/process/group.rb
CHANGED
@@ -25,7 +25,7 @@ module Process
|
|
25
25
|
# A group of tasks which can be run asynchrnously using fibers. Someone must call Group#wait to ensure that all fibers eventually resume.
|
26
26
|
class Group
|
27
27
|
def self.wait(**options, &block)
|
28
|
-
group = Group.new(options)
|
28
|
+
group = Group.new(**options)
|
29
29
|
|
30
30
|
group.wait(&block)
|
31
31
|
end
|