grpc 1.32.0-universal-darwin → 1.36.0-universal-darwin
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of grpc might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/etc/roots.pem +257 -573
- data/src/ruby/ext/grpc/extconf.rb +1 -1
- data/src/ruby/ext/grpc/rb_event_thread.c +2 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +36 -16
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +70 -40
- data/src/ruby/lib/grpc/2.4/grpc_c.bundle +0 -0
- data/src/ruby/lib/grpc/2.5/grpc_c.bundle +0 -0
- data/src/ruby/lib/grpc/2.6/grpc_c.bundle +0 -0
- data/src/ruby/lib/grpc/2.7/grpc_c.bundle +0 -0
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +35 -0
- data/src/ruby/pb/src/proto/grpc/testing/test_services_pb.rb +18 -0
- data/src/ruby/pb/test/xds_client.rb +148 -23
- data/src/ruby/spec/pb/codegen/package_option_spec.rb +2 -6
- metadata +10 -11
- data/src/ruby/lib/grpc/2.3/grpc_c.bundle +0 -0
@@ -71,14 +71,10 @@ describe 'Code Generation Options' do
|
|
71
71
|
end
|
72
72
|
|
73
73
|
def with_protos(file_paths)
|
74
|
-
fail 'CONFIG env variable unexpectedly unset' unless ENV['CONFIG']
|
75
|
-
bins_sub_dir = ENV['CONFIG']
|
76
|
-
|
77
74
|
pb_dir = File.dirname(__FILE__)
|
78
|
-
bins_dir = File.join('..', '..', '..', '..', '..', '
|
79
|
-
|
75
|
+
bins_dir = File.join('..', '..', '..', '..', '..', 'cmake', 'build')
|
80
76
|
plugin = File.join(bins_dir, 'grpc_ruby_plugin')
|
81
|
-
protoc = File.join(bins_dir, 'protobuf', 'protoc')
|
77
|
+
protoc = File.join(bins_dir, 'third_party', 'protobuf', 'protoc')
|
82
78
|
|
83
79
|
# Generate the service from the proto
|
84
80
|
Dir.mktmpdir(nil, File.dirname(__FILE__)) do |tmp_dir|
|
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.
|
4
|
+
version: 1.36.0
|
5
5
|
platform: universal-darwin
|
6
6
|
authors:
|
7
7
|
- gRPC Authors
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: src/ruby/bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-02-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-protobuf
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '3.
|
19
|
+
version: '3.14'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '3.
|
26
|
+
version: '3.14'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: googleapis-common-protos-types
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -246,7 +246,6 @@ files:
|
|
246
246
|
- src/ruby/ext/grpc/rb_server_credentials.c
|
247
247
|
- src/ruby/ext/grpc/rb_server_credentials.h
|
248
248
|
- src/ruby/lib/grpc.rb
|
249
|
-
- src/ruby/lib/grpc/2.3/grpc_c.bundle
|
250
249
|
- src/ruby/lib/grpc/2.4/grpc_c.bundle
|
251
250
|
- src/ruby/lib/grpc/2.5/grpc_c.bundle
|
252
251
|
- src/ruby/lib/grpc/2.6/grpc_c.bundle
|
@@ -330,7 +329,7 @@ homepage: https://github.com/google/grpc/tree/master/src/ruby
|
|
330
329
|
licenses:
|
331
330
|
- Apache-2.0
|
332
331
|
metadata: {}
|
333
|
-
post_install_message:
|
332
|
+
post_install_message:
|
334
333
|
rdoc_options: []
|
335
334
|
require_paths:
|
336
335
|
- src/ruby/lib
|
@@ -340,18 +339,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
340
339
|
requirements:
|
341
340
|
- - ">="
|
342
341
|
- !ruby/object:Gem::Version
|
343
|
-
version: '2.
|
342
|
+
version: '2.4'
|
344
343
|
- - "<"
|
345
344
|
- !ruby/object:Gem::Version
|
346
|
-
version:
|
345
|
+
version: 3.1.dev
|
347
346
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
348
347
|
requirements:
|
349
348
|
- - ">="
|
350
349
|
- !ruby/object:Gem::Version
|
351
350
|
version: '0'
|
352
351
|
requirements: []
|
353
|
-
rubygems_version: 3.
|
354
|
-
signing_key:
|
352
|
+
rubygems_version: 3.2.11
|
353
|
+
signing_key:
|
355
354
|
specification_version: 4
|
356
355
|
summary: GRPC system in Ruby
|
357
356
|
test_files:
|
Binary file
|