grpc 1.55.0-x86_64-darwin → 1.56.0-x86_64-darwin

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.

Potentially problematic release.


This version of grpc might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6d519d482475562e8f7d92bd3ce8c44a9303e29fa36316100e1ab302c577917a
4
- data.tar.gz: 14fee242fbc79b5f6f5d1f00afb891f9252dcfb717682d4cb65026ca09d336c5
3
+ metadata.gz: 25d382dcc81bbbf01ebafbc318b08161c52e358c09023ac72d037083fdd7a0df
4
+ data.tar.gz: 11608ce9e3bfc8a383c8384ca3aaa325511ff6431b9baafe12c0ac0e68afdf09
5
5
  SHA512:
6
- metadata.gz: bd56f3e6c43eb3107511ca7e2a6d5c7ddb634d9869defc898dca2c91368f0c6fba07b6e12237159656583680ca4bb163082b12abe75b0ac0ee843148a69d0361
7
- data.tar.gz: b30d241d38168f787349fa7e5c964446561b8bc86a2c9da064aa7ed02b5bb815579dd42404335989391159f6fc3ca6fb1c86d22730bcd94324edd35c395972a5
6
+ metadata.gz: 6d9ed199827711e30975b76bda38f147ad27a027f346aac3db0838cecf37580df5e0fd04318cabc8edd631ee9d64d0f2da8a1fac21c4a5747de00e9ba5b4cd41
7
+ data.tar.gz: 352df6d081989cfb804a51b8dff068051e88564d2b8bf2d29b11b079aaf09d62c8fce5421c83cf0bd1a446968c4f4a08c60dd49c146fc677da8deb6639473d4c
@@ -34,24 +34,23 @@ def env_unset?(name)
34
34
  ENV[name].nil? || ENV[name].size == 0
35
35
  end
36
36
 
37
- def rbconfig_set?(name)
38
- RbConfig::CONFIG[name] && RbConfig::CONFIG[name].size > 0
37
+ def inherit_env_or_rbconfig(name)
38
+ ENV[name] = inherit_rbconfig(name) if env_unset?(name)
39
39
  end
40
40
 
41
41
  def inherit_rbconfig(name)
42
- ENV[name] = RbConfig::CONFIG[name] if env_unset?(name) && rbconfig_set?(name)
42
+ ENV[name] = RbConfig::CONFIG[name] || ''
43
43
  end
44
44
 
45
45
  def env_append(name, string)
46
- ENV[name] ||= ''
47
46
  ENV[name] += ' ' + string
48
47
  end
49
48
 
50
- inherit_rbconfig 'AR'
51
- inherit_rbconfig 'CC'
52
- inherit_rbconfig 'CXX'
53
- inherit_rbconfig 'RANLIB'
54
- inherit_rbconfig 'STRIP'
49
+ inherit_env_or_rbconfig 'AR'
50
+ inherit_env_or_rbconfig 'CC'
51
+ inherit_env_or_rbconfig 'CXX'
52
+ inherit_env_or_rbconfig 'RANLIB'
53
+ inherit_env_or_rbconfig 'STRIP'
55
54
  inherit_rbconfig 'CPPFLAGS'
56
55
  inherit_rbconfig 'LDFLAGS'
57
56
 
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -14,5 +14,5 @@
14
14
 
15
15
  # GRPC contains the General RPC module.
16
16
  module GRPC
17
- VERSION = '1.55.0'
17
+ VERSION = '1.56.0'
18
18
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: grpc
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.55.0
4
+ version: 1.56.0
5
5
  platform: x86_64-darwin
6
6
  authors:
7
7
  - gRPC Authors
8
8
  autorequire:
9
9
  bindir: src/ruby/bin
10
10
  cert_chain: []
11
- date: 2023-05-19 00:00:00.000000000 Z
11
+ date: 2023-06-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf
@@ -359,7 +359,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
359
359
  - !ruby/object:Gem::Version
360
360
  version: '0'
361
361
  requirements: []
362
- rubygems_version: 3.4.13
362
+ rubygems_version: 3.4.14
363
363
  signing_key:
364
364
  specification_version: 4
365
365
  summary: GRPC system in Ruby