grpc-tools 1.21.0 → 1.22.0.pre1
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/bin/x86-linux/google/protobuf/compiler/plugin.proto +1 -0
- data/bin/x86-linux/google/protobuf/descriptor.proto +66 -67
- data/bin/x86-linux/google/protobuf/duration.proto +0 -1
- data/bin/x86-linux/google/protobuf/struct.proto +0 -1
- data/bin/x86-linux/google/protobuf/timestamp.proto +6 -5
- data/bin/x86-linux/google/protobuf/type.proto +20 -20
- data/bin/x86-linux/grpc_ruby_plugin +0 -0
- data/bin/x86-linux/protoc +0 -0
- data/bin/x86-macos/google/protobuf/compiler/plugin.proto +1 -0
- data/bin/x86-macos/google/protobuf/descriptor.proto +66 -67
- data/bin/x86-macos/google/protobuf/duration.proto +0 -1
- data/bin/x86-macos/google/protobuf/struct.proto +0 -1
- data/bin/x86-macos/google/protobuf/timestamp.proto +6 -5
- data/bin/x86-macos/google/protobuf/type.proto +20 -20
- data/bin/x86-macos/grpc_ruby_plugin +0 -0
- data/bin/x86-macos/protoc +0 -0
- data/bin/x86-windows/google/protobuf/compiler/plugin.proto +1 -0
- data/bin/x86-windows/google/protobuf/descriptor.proto +66 -67
- data/bin/x86-windows/google/protobuf/duration.proto +0 -1
- data/bin/x86-windows/google/protobuf/struct.proto +0 -1
- data/bin/x86-windows/google/protobuf/timestamp.proto +6 -5
- data/bin/x86-windows/google/protobuf/type.proto +20 -20
- data/bin/x86-windows/grpc_ruby_plugin.exe +0 -0
- data/bin/x86-windows/protoc.exe +0 -0
- data/bin/x86_64-linux/google/protobuf/compiler/plugin.proto +1 -0
- data/bin/x86_64-linux/google/protobuf/descriptor.proto +66 -67
- data/bin/x86_64-linux/google/protobuf/duration.proto +0 -1
- data/bin/x86_64-linux/google/protobuf/struct.proto +0 -1
- data/bin/x86_64-linux/google/protobuf/timestamp.proto +6 -5
- data/bin/x86_64-linux/google/protobuf/type.proto +20 -20
- data/bin/x86_64-linux/grpc_ruby_plugin +0 -0
- data/bin/x86_64-linux/protoc +0 -0
- data/bin/x86_64-macos/google/protobuf/compiler/plugin.proto +1 -0
- data/bin/x86_64-macos/google/protobuf/descriptor.proto +66 -67
- data/bin/x86_64-macos/google/protobuf/duration.proto +0 -1
- data/bin/x86_64-macos/google/protobuf/struct.proto +0 -1
- data/bin/x86_64-macos/google/protobuf/timestamp.proto +6 -5
- data/bin/x86_64-macos/google/protobuf/type.proto +20 -20
- data/bin/x86_64-macos/grpc_ruby_plugin +0 -0
- data/bin/x86_64-macos/protoc +0 -0
- data/bin/x86_64-windows/google/protobuf/compiler/plugin.proto +1 -0
- data/bin/x86_64-windows/google/protobuf/descriptor.proto +66 -67
- data/bin/x86_64-windows/google/protobuf/duration.proto +0 -1
- data/bin/x86_64-windows/google/protobuf/struct.proto +0 -1
- data/bin/x86_64-windows/google/protobuf/timestamp.proto +6 -5
- data/bin/x86_64-windows/google/protobuf/type.proto +20 -20
- data/bin/x86_64-windows/grpc_ruby_plugin.exe +0 -0
- data/bin/x86_64-windows/protoc.exe +0 -0
- data/version.rb +1 -1
- metadata +4 -4
@@ -40,7 +40,6 @@ option java_outer_classname = "StructProto";
|
|
40
40
|
option java_multiple_files = true;
|
41
41
|
option objc_class_prefix = "GPB";
|
42
42
|
|
43
|
-
|
44
43
|
// `Struct` represents a structured data value, consisting of fields
|
45
44
|
// which map to dynamically typed values. In some languages, `Struct`
|
46
45
|
// might be supported by a native representation. For example, in
|
@@ -113,17 +113,18 @@ option objc_class_prefix = "GPB";
|
|
113
113
|
// 01:30 UTC on January 15, 2017.
|
114
114
|
//
|
115
115
|
// In JavaScript, one can convert a Date object to this format using the
|
116
|
-
// standard
|
116
|
+
// standard
|
117
|
+
// [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)
|
117
118
|
// method. In Python, a standard `datetime.datetime` object can be converted
|
118
|
-
// to this format using
|
119
|
-
//
|
120
|
-
//
|
119
|
+
// to this format using
|
120
|
+
// [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with
|
121
|
+
// the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use
|
122
|
+
// the Joda Time's [`ISODateTimeFormat.dateTime()`](
|
121
123
|
// http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D
|
122
124
|
// ) to obtain a formatter capable of generating timestamps in this format.
|
123
125
|
//
|
124
126
|
//
|
125
127
|
message Timestamp {
|
126
|
-
|
127
128
|
// Represents seconds of UTC time since Unix epoch
|
128
129
|
// 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
|
129
130
|
// 9999-12-31T23:59:59Z inclusive.
|
@@ -64,44 +64,44 @@ message Field {
|
|
64
64
|
// Basic field types.
|
65
65
|
enum Kind {
|
66
66
|
// Field type unknown.
|
67
|
-
TYPE_UNKNOWN
|
67
|
+
TYPE_UNKNOWN = 0;
|
68
68
|
// Field type double.
|
69
|
-
TYPE_DOUBLE
|
69
|
+
TYPE_DOUBLE = 1;
|
70
70
|
// Field type float.
|
71
|
-
TYPE_FLOAT
|
71
|
+
TYPE_FLOAT = 2;
|
72
72
|
// Field type int64.
|
73
|
-
TYPE_INT64
|
73
|
+
TYPE_INT64 = 3;
|
74
74
|
// Field type uint64.
|
75
|
-
TYPE_UINT64
|
75
|
+
TYPE_UINT64 = 4;
|
76
76
|
// Field type int32.
|
77
|
-
TYPE_INT32
|
77
|
+
TYPE_INT32 = 5;
|
78
78
|
// Field type fixed64.
|
79
|
-
TYPE_FIXED64
|
79
|
+
TYPE_FIXED64 = 6;
|
80
80
|
// Field type fixed32.
|
81
|
-
TYPE_FIXED32
|
81
|
+
TYPE_FIXED32 = 7;
|
82
82
|
// Field type bool.
|
83
|
-
TYPE_BOOL
|
83
|
+
TYPE_BOOL = 8;
|
84
84
|
// Field type string.
|
85
|
-
TYPE_STRING
|
85
|
+
TYPE_STRING = 9;
|
86
86
|
// Field type group. Proto2 syntax only, and deprecated.
|
87
|
-
TYPE_GROUP
|
87
|
+
TYPE_GROUP = 10;
|
88
88
|
// Field type message.
|
89
|
-
TYPE_MESSAGE
|
89
|
+
TYPE_MESSAGE = 11;
|
90
90
|
// Field type bytes.
|
91
|
-
TYPE_BYTES
|
91
|
+
TYPE_BYTES = 12;
|
92
92
|
// Field type uint32.
|
93
|
-
TYPE_UINT32
|
93
|
+
TYPE_UINT32 = 13;
|
94
94
|
// Field type enum.
|
95
|
-
TYPE_ENUM
|
95
|
+
TYPE_ENUM = 14;
|
96
96
|
// Field type sfixed32.
|
97
|
-
TYPE_SFIXED32
|
97
|
+
TYPE_SFIXED32 = 15;
|
98
98
|
// Field type sfixed64.
|
99
|
-
TYPE_SFIXED64
|
99
|
+
TYPE_SFIXED64 = 16;
|
100
100
|
// Field type sint32.
|
101
|
-
TYPE_SINT32
|
101
|
+
TYPE_SINT32 = 17;
|
102
102
|
// Field type sint64.
|
103
|
-
TYPE_SINT64
|
104
|
-
}
|
103
|
+
TYPE_SINT64 = 18;
|
104
|
+
}
|
105
105
|
|
106
106
|
// Whether a field is optional, required, or repeated.
|
107
107
|
enum Cardinality {
|
Binary file
|
Binary file
|
data/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: grpc-tools
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.22.0.pre1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- grpc Authors
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-06-20 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: protoc and the Ruby gRPC protoc plugin
|
14
14
|
email: grpc-io@googlegroups.com
|
@@ -122,9 +122,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
122
122
|
version: '0'
|
123
123
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
124
124
|
requirements:
|
125
|
-
- - "
|
125
|
+
- - ">"
|
126
126
|
- !ruby/object:Gem::Version
|
127
|
-
version:
|
127
|
+
version: 1.3.1
|
128
128
|
requirements: []
|
129
129
|
rubyforge_project:
|
130
130
|
rubygems_version: 2.7.9
|