grpc 1.34.0-universal-darwin → 1.35.0.pre1-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/rb_event_thread.c +2 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +12 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +31 -13
- data/src/ruby/lib/grpc/2.3/grpc_c.bundle +0 -0
- 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 +28 -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 +9 -9
@@ -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.35.0.pre1
|
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-01-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-protobuf
|
@@ -330,7 +330,7 @@ homepage: https://github.com/google/grpc/tree/master/src/ruby
|
|
330
330
|
licenses:
|
331
331
|
- Apache-2.0
|
332
332
|
metadata: {}
|
333
|
-
post_install_message:
|
333
|
+
post_install_message:
|
334
334
|
rdoc_options: []
|
335
335
|
require_paths:
|
336
336
|
- src/ruby/lib
|
@@ -343,15 +343,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
343
343
|
version: '2.3'
|
344
344
|
- - "<"
|
345
345
|
- !ruby/object:Gem::Version
|
346
|
-
version:
|
346
|
+
version: 3.1.dev
|
347
347
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
348
348
|
requirements:
|
349
|
-
- - "
|
349
|
+
- - ">"
|
350
350
|
- !ruby/object:Gem::Version
|
351
|
-
version:
|
351
|
+
version: 1.3.1
|
352
352
|
requirements: []
|
353
|
-
rubygems_version: 3.
|
354
|
-
signing_key:
|
353
|
+
rubygems_version: 3.2.4
|
354
|
+
signing_key:
|
355
355
|
specification_version: 4
|
356
356
|
summary: GRPC system in Ruby
|
357
357
|
test_files:
|