parallel 1.26.2 → 1.26.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c07164b3539800c522450fc924698e6cf1b81b70f7d9d60af4610336eba30dbd
4
- data.tar.gz: f88c4de5c97837809bc5c120da1ada9a30b06131bff9fab60e5de42c0c0f7747
3
+ metadata.gz: 404f38d083ffa4ed2163c3018f5243fe487b6154905afa83b59320380bd3629a
4
+ data.tar.gz: 832f558729b425fa3e2ad6b9a3d6418c44d0f4a2ecc180a398a28b2301cd5cab
5
5
  SHA512:
6
- metadata.gz: 6ae2b910a41386edcace4a457a23fb2db78bd724634063cdc81e600c07342d7bff03415d5829fb7639834c7353edeb2b1c46f6a95e758f8634cf1f510c5ec117
7
- data.tar.gz: e8c800d89d83c15ef86a2bac9bc1bb7875df1466a208b357a792ddb786d9f2758a7b2a4c75b071f18f1f1f39b1eda9ddaccf11f3a929d296b5c13677276dee11
6
+ metadata.gz: 5947502dc01d242a8a1cef0e2133cc3df913107941f5ba5bd82032bda76de6358bc44e62848909a75f2bfa45c867ee099f454c2652555265d734a166c988d144
7
+ data.tar.gz: '08f69f6c82041f015dee319ccc42bb0b1e20fc3d58b4e4007c1636ce459a71b0625ebb3ec8c28549562c1ed3f99f4182da41d8741a42eeeb4a96cb51b9bff701'
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module Parallel
3
- VERSION = Version = '1.26.2' # rubocop:disable Naming/ConstantName
3
+ VERSION = Version = '1.26.3' # rubocop:disable Naming/ConstantName
4
4
  end
data/lib/parallel.rb CHANGED
@@ -697,9 +697,10 @@ module Parallel
697
697
  end
698
698
 
699
699
  def available_processor_count
700
+ gem 'concurrent-ruby', '>= 1.3.4'
700
701
  require 'concurrent-ruby'
701
702
  Concurrent.available_processor_count.floor
702
- rescue LoadError, NoMethodError
703
+ rescue LoadError
703
704
  require 'etc'
704
705
  Etc.nprocessors
705
706
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: parallel
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.26.2
4
+ version: 1.26.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Grosser
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-08-11 00:00:00.000000000 Z
11
+ date: 2024-08-16 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: michael@grosser.it
@@ -24,8 +24,8 @@ licenses:
24
24
  - MIT
25
25
  metadata:
26
26
  bug_tracker_uri: https://github.com/grosser/parallel/issues
27
- documentation_uri: https://github.com/grosser/parallel/blob/v1.26.2/Readme.md
28
- source_code_uri: https://github.com/grosser/parallel/tree/v1.26.2
27
+ documentation_uri: https://github.com/grosser/parallel/blob/v1.26.3/Readme.md
28
+ source_code_uri: https://github.com/grosser/parallel/tree/v1.26.3
29
29
  wiki_uri: https://github.com/grosser/parallel/wiki
30
30
  post_install_message:
31
31
  rdoc_options: []