process-group 1.2.2 → 1.2.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 38e06a3ab81ffc75c98a332e2e92b105bd2e92facd4cffcd8bb51c6c7c3c8726
4
- data.tar.gz: 79af5a9a36c886e74258d83c4641f7acdbcf26ded2fd3db88bf1872f88324882
3
+ metadata.gz: a2ef7e85dc264aa4d6254170467cd4fc1e47d2c5f552b3c55528370142526452
4
+ data.tar.gz: 7e8d6ccb53689d31a427484cfab31bb783a6896de2208c2780f664f3b6e5e883
5
5
  SHA512:
6
- metadata.gz: e5eb50575f97b84b9c3bf171484bf82e02b2e97e7546bf49f9ed0ec8b7dea15751137c4baf40af95890ffff0506ada4f1533400ec747854a41a3275b3c81a126
7
- data.tar.gz: 7679dd3394e8da2e9eb4f1f35bc41e9110e2bef472b8e4afd68d85b4ee0676b96c11ab481feb4413720ace5ea002c063233b8fb42a42b029bd336626057366d1
6
+ metadata.gz: 2106bb6e1e7f2f7f20a63781d82b95786305b53005bdff44cd0bdc5e1a2ff13c6efefc26c715f3d76919b683309afac6016e18dbdbc374afb736a36c9b1c4a1c
7
+ data.tar.gz: 8e96440ab717809e09c06f11ea3e9bb8596f31613804b04a11a84266a55008fe22d42a47129798062cad0ebc9dd54dc3ea0652664a36b535a0cc3ae4d4f1c1af
@@ -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
@@ -20,6 +20,6 @@
20
20
 
21
21
  module Process
22
22
  class Group
23
- VERSION = "1.2.2"
23
+ VERSION = "1.2.3"
24
24
  end
25
25
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: process-group
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.2
4
+ version: 1.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Williams