grpc 1.76.0-x64-mingw-ucrt → 1.78.0.pre1-x64-mingw-ucrt
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 +4 -4
- data/grpc_c.64-ucrt.ruby +0 -0
- data/src/ruby/ext/grpc/extconf.rb +14 -12
- data/src/ruby/ext/grpc/rb_call.c +0 -1
- data/src/ruby/ext/grpc/rb_channel_args.c +0 -1
- data/src/ruby/ext/grpc/rb_channel_credentials.c +0 -1
- data/src/ruby/ext/grpc/rb_compression_options.c +0 -1
- data/src/ruby/ext/grpc/rb_server_credentials.c +0 -1
- data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +0 -1
- data/src/ruby/ext/grpc/rb_xds_server_credentials.c +0 -1
- data/src/ruby/lib/grpc/3.1/grpc_c.so +0 -0
- data/src/ruby/lib/grpc/3.2/grpc_c.so +0 -0
- data/src/ruby/lib/grpc/3.3/grpc_c.so +0 -0
- data/src/ruby/lib/grpc/3.4/grpc_c.so +0 -0
- data/src/ruby/lib/grpc/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1769ecb158ecc9b473c0fcb7f66620241e1819eb101a910017d485687b815770
|
|
4
|
+
data.tar.gz: 47e2c32cfe322a54411b409f11b5287ac2f131edb82c3e5740846c92a2099a38
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: efb0c50eaf5822bc9627b6177721d25c6af651523f7e8c0a4f83381aa8409eaecd4bc87ab84fece8fbf120a684892946c8ff4d48eae0f0654f060140789bd114
|
|
7
|
+
data.tar.gz: 94a23ef79e63c553a88bf81027bd2d8175fae01fdd789fbce4bce5973940b9236abb085cd21dff0884aceeaad11c0c3bb1316ee185cb2caf5e1e853ec7686613
|
data/grpc_c.64-ucrt.ruby
CHANGED
|
Binary file
|
|
@@ -154,19 +154,21 @@ def have_ruby_abi_version()
|
|
|
154
154
|
# See also discussion for Ruby 3.4 in https://github.com/grpc/grpc/pull/38338 and https://github.com/grpc/grpc/pull/38487
|
|
155
155
|
return false if RUBY_PATCHLEVEL >= 0
|
|
156
156
|
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
157
|
+
min_version = Gem::Version.new('3.2')
|
|
158
|
+
|
|
159
|
+
begin
|
|
160
|
+
current_version = Gem::Version.new(RUBY_VERSION)
|
|
161
|
+
if current_version >= min_version
|
|
162
|
+
puts "Ruby version #{RUBY_VERSION} >= 3.2. Assuming ruby_abi_version symbol is present."
|
|
163
|
+
true
|
|
164
|
+
else
|
|
165
|
+
puts "Ruby version #{RUBY_VERSION} < 3.2. Assuming ruby_abi_version symbol is NOT present."
|
|
166
|
+
false
|
|
167
|
+
end
|
|
168
|
+
rescue ArgumentError
|
|
169
|
+
puts "Failed to parse ruby version #{RUBY_VERSION}. Assuming ruby_abi_version symbol is NOT present."
|
|
170
|
+
false
|
|
167
171
|
end
|
|
168
|
-
puts "Ruby version #{RUBY_VERSION} < 3.2. Assuming ruby_abi_version symbol is NOT present."
|
|
169
|
-
false
|
|
170
172
|
end
|
|
171
173
|
|
|
172
174
|
def ext_export_filename()
|
data/src/ruby/ext/grpc/rb_call.c
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: grpc
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.78.0.pre1
|
|
5
5
|
platform: x64-mingw-ucrt
|
|
6
6
|
authors:
|
|
7
7
|
- gRPC Authors
|
|
@@ -131,16 +131,16 @@ dependencies:
|
|
|
131
131
|
name: rake-compiler-dock
|
|
132
132
|
requirement: !ruby/object:Gem::Requirement
|
|
133
133
|
requirements:
|
|
134
|
-
- -
|
|
134
|
+
- - '='
|
|
135
135
|
- !ruby/object:Gem::Version
|
|
136
|
-
version:
|
|
136
|
+
version: 1.9.1
|
|
137
137
|
type: :development
|
|
138
138
|
prerelease: false
|
|
139
139
|
version_requirements: !ruby/object:Gem::Requirement
|
|
140
140
|
requirements:
|
|
141
|
-
- -
|
|
141
|
+
- - '='
|
|
142
142
|
- !ruby/object:Gem::Version
|
|
143
|
-
version:
|
|
143
|
+
version: 1.9.1
|
|
144
144
|
- !ruby/object:Gem::Dependency
|
|
145
145
|
name: rspec
|
|
146
146
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -357,7 +357,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
357
357
|
- !ruby/object:Gem::Version
|
|
358
358
|
version: '0'
|
|
359
359
|
requirements: []
|
|
360
|
-
rubygems_version:
|
|
360
|
+
rubygems_version: 4.0.3
|
|
361
361
|
specification_version: 4
|
|
362
362
|
summary: GRPC system in Ruby
|
|
363
363
|
test_files:
|