tapioca 0.11.5 → 0.11.6

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: 49ff67fe6f34923e27d8c7ab2dbb0f616fa056d0f57905cbff5284a9abb5fb40
4
- data.tar.gz: fa92f0074e930ffbdc1fcf6ad0c1462e6e3aa3bbf05ae3febf467252763e8c9b
3
+ metadata.gz: 8ee3bcaf55b533576a46aa60a0a03b946552ee3fba42f8b136108dea8d0888ba
4
+ data.tar.gz: b0d12f84750676a3b99eb7e76e10d3be64a92359f5a440c0c8c5ef9c7f3e5ac9
5
5
  SHA512:
6
- metadata.gz: 3ba1fa737b5474b4433dd30ebb9104974c0d9a61c92e597546595ea142f2dadd7bea6b3915b742920176fec7d2670a1cf453d29f1ec633705373bb7b50958927
7
- data.tar.gz: 2dc119e28e7d09d6dfe6bda01dfb185358a1a7db2d9d433a99d470a210eab40c9f476e9fb065cc6d6156f68cff6c16e3c1016f040cc86262afda1827892685cb
6
+ metadata.gz: cf6bb9e139fabc27048c5237f0e8662f5972051ae01fd1fcaae34f11c23fceb471f7d7118df9dabd507b24f7fccf8d4a6208dfd02d08ed37453b1ef2679ba04f
7
+ data.tar.gz: 2860aaa02b120a10182e7928fdc54f48d6eca933f4eee8ec51df78ae59043bc59c6cc839b1a65d2fe610c3ec545ad68b2caf400821b32c7ee029ca0046b88009
@@ -231,7 +231,8 @@ module Tapioca
231
231
  # Here we're going to check if the submsg_name is named according to
232
232
  # how Google names map entries.
233
233
  # https://github.com/protocolbuffers/protobuf/blob/f82e26/ruby/ext/google/protobuf_c/defs.c#L1963-L1966
234
- if descriptor.submsg_name.to_s.end_with?("_MapEntry_#{descriptor.name}")
234
+ if descriptor.submsg_name.to_s.end_with?("_MapEntry_#{descriptor.name}") ||
235
+ descriptor.submsg_name.to_s.end_with?("FieldsEntry")
235
236
  key = descriptor.subtype.lookup("key")
236
237
  value = descriptor.subtype.lookup("value")
237
238
 
@@ -15,7 +15,7 @@ module Tapioca
15
15
  # be the minimum between the number of available processors (max) or the number of workers to make sure that each
16
16
  # one has at least 4 items to process
17
17
  @number_of_workers = T.let(
18
- number_of_workers || [Etc.nprocessors, (queue.length.to_f / MINIMUM_ITEMS_PER_WORKER).ceil].min,
18
+ number_of_workers || [max_processors, (queue.length.to_f / MINIMUM_ITEMS_PER_WORKER).ceil].min,
19
19
  Integer,
20
20
  )
21
21
  end
@@ -30,5 +30,13 @@ module Tapioca
30
30
  number_of_processes = @number_of_workers == 1 ? 0 : @number_of_workers
31
31
  Parallel.map(@queue, { in_processes: number_of_processes }, &block)
32
32
  end
33
+
34
+ private
35
+
36
+ sig { returns(Integer) }
37
+ def max_processors
38
+ env_max_processors = ENV["PARALLEL_PROCESSOR_COUNT"].to_i
39
+ env_max_processors.positive? ? env_max_processors : Etc.nprocessors
40
+ end
33
41
  end
34
42
  end
@@ -2,5 +2,5 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  module Tapioca
5
- VERSION = "0.11.5"
5
+ VERSION = "0.11.6"
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tapioca
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.5
4
+ version: 0.11.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ufuk Kayserilioglu
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: exe
13
13
  cert_chain: []
14
- date: 2023-04-12 00:00:00.000000000 Z
14
+ date: 2023-05-12 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: bundler
@@ -281,7 +281,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
281
281
  - !ruby/object:Gem::Version
282
282
  version: '0'
283
283
  requirements: []
284
- rubygems_version: 3.4.10
284
+ rubygems_version: 3.4.12
285
285
  signing_key:
286
286
  specification_version: 4
287
287
  summary: A Ruby Interface file generator for gems, core types and the Ruby standard