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.
Files changed (51) hide show
  1. checksums.yaml +4 -4
  2. data/bin/x86-linux/google/protobuf/compiler/plugin.proto +1 -0
  3. data/bin/x86-linux/google/protobuf/descriptor.proto +66 -67
  4. data/bin/x86-linux/google/protobuf/duration.proto +0 -1
  5. data/bin/x86-linux/google/protobuf/struct.proto +0 -1
  6. data/bin/x86-linux/google/protobuf/timestamp.proto +6 -5
  7. data/bin/x86-linux/google/protobuf/type.proto +20 -20
  8. data/bin/x86-linux/grpc_ruby_plugin +0 -0
  9. data/bin/x86-linux/protoc +0 -0
  10. data/bin/x86-macos/google/protobuf/compiler/plugin.proto +1 -0
  11. data/bin/x86-macos/google/protobuf/descriptor.proto +66 -67
  12. data/bin/x86-macos/google/protobuf/duration.proto +0 -1
  13. data/bin/x86-macos/google/protobuf/struct.proto +0 -1
  14. data/bin/x86-macos/google/protobuf/timestamp.proto +6 -5
  15. data/bin/x86-macos/google/protobuf/type.proto +20 -20
  16. data/bin/x86-macos/grpc_ruby_plugin +0 -0
  17. data/bin/x86-macos/protoc +0 -0
  18. data/bin/x86-windows/google/protobuf/compiler/plugin.proto +1 -0
  19. data/bin/x86-windows/google/protobuf/descriptor.proto +66 -67
  20. data/bin/x86-windows/google/protobuf/duration.proto +0 -1
  21. data/bin/x86-windows/google/protobuf/struct.proto +0 -1
  22. data/bin/x86-windows/google/protobuf/timestamp.proto +6 -5
  23. data/bin/x86-windows/google/protobuf/type.proto +20 -20
  24. data/bin/x86-windows/grpc_ruby_plugin.exe +0 -0
  25. data/bin/x86-windows/protoc.exe +0 -0
  26. data/bin/x86_64-linux/google/protobuf/compiler/plugin.proto +1 -0
  27. data/bin/x86_64-linux/google/protobuf/descriptor.proto +66 -67
  28. data/bin/x86_64-linux/google/protobuf/duration.proto +0 -1
  29. data/bin/x86_64-linux/google/protobuf/struct.proto +0 -1
  30. data/bin/x86_64-linux/google/protobuf/timestamp.proto +6 -5
  31. data/bin/x86_64-linux/google/protobuf/type.proto +20 -20
  32. data/bin/x86_64-linux/grpc_ruby_plugin +0 -0
  33. data/bin/x86_64-linux/protoc +0 -0
  34. data/bin/x86_64-macos/google/protobuf/compiler/plugin.proto +1 -0
  35. data/bin/x86_64-macos/google/protobuf/descriptor.proto +66 -67
  36. data/bin/x86_64-macos/google/protobuf/duration.proto +0 -1
  37. data/bin/x86_64-macos/google/protobuf/struct.proto +0 -1
  38. data/bin/x86_64-macos/google/protobuf/timestamp.proto +6 -5
  39. data/bin/x86_64-macos/google/protobuf/type.proto +20 -20
  40. data/bin/x86_64-macos/grpc_ruby_plugin +0 -0
  41. data/bin/x86_64-macos/protoc +0 -0
  42. data/bin/x86_64-windows/google/protobuf/compiler/plugin.proto +1 -0
  43. data/bin/x86_64-windows/google/protobuf/descriptor.proto +66 -67
  44. data/bin/x86_64-windows/google/protobuf/duration.proto +0 -1
  45. data/bin/x86_64-windows/google/protobuf/struct.proto +0 -1
  46. data/bin/x86_64-windows/google/protobuf/timestamp.proto +6 -5
  47. data/bin/x86_64-windows/google/protobuf/type.proto +20 -20
  48. data/bin/x86_64-windows/grpc_ruby_plugin.exe +0 -0
  49. data/bin/x86_64-windows/protoc.exe +0 -0
  50. data/version.rb +1 -1
  51. 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 [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)
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 [`strftime`](https://docs.python.org/2/library/time.html#time.strftime)
119
- // with the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one
120
- // can use the Joda Time's [`ISODateTimeFormat.dateTime()`](
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 = 0;
67
+ TYPE_UNKNOWN = 0;
68
68
  // Field type double.
69
- TYPE_DOUBLE = 1;
69
+ TYPE_DOUBLE = 1;
70
70
  // Field type float.
71
- TYPE_FLOAT = 2;
71
+ TYPE_FLOAT = 2;
72
72
  // Field type int64.
73
- TYPE_INT64 = 3;
73
+ TYPE_INT64 = 3;
74
74
  // Field type uint64.
75
- TYPE_UINT64 = 4;
75
+ TYPE_UINT64 = 4;
76
76
  // Field type int32.
77
- TYPE_INT32 = 5;
77
+ TYPE_INT32 = 5;
78
78
  // Field type fixed64.
79
- TYPE_FIXED64 = 6;
79
+ TYPE_FIXED64 = 6;
80
80
  // Field type fixed32.
81
- TYPE_FIXED32 = 7;
81
+ TYPE_FIXED32 = 7;
82
82
  // Field type bool.
83
- TYPE_BOOL = 8;
83
+ TYPE_BOOL = 8;
84
84
  // Field type string.
85
- TYPE_STRING = 9;
85
+ TYPE_STRING = 9;
86
86
  // Field type group. Proto2 syntax only, and deprecated.
87
- TYPE_GROUP = 10;
87
+ TYPE_GROUP = 10;
88
88
  // Field type message.
89
- TYPE_MESSAGE = 11;
89
+ TYPE_MESSAGE = 11;
90
90
  // Field type bytes.
91
- TYPE_BYTES = 12;
91
+ TYPE_BYTES = 12;
92
92
  // Field type uint32.
93
- TYPE_UINT32 = 13;
93
+ TYPE_UINT32 = 13;
94
94
  // Field type enum.
95
- TYPE_ENUM = 14;
95
+ TYPE_ENUM = 14;
96
96
  // Field type sfixed32.
97
- TYPE_SFIXED32 = 15;
97
+ TYPE_SFIXED32 = 15;
98
98
  // Field type sfixed64.
99
- TYPE_SFIXED64 = 16;
99
+ TYPE_SFIXED64 = 16;
100
100
  // Field type sint32.
101
- TYPE_SINT32 = 17;
101
+ TYPE_SINT32 = 17;
102
102
  // Field type sint64.
103
- TYPE_SINT64 = 18;
104
- };
103
+ TYPE_SINT64 = 18;
104
+ }
105
105
 
106
106
  // Whether a field is optional, required, or repeated.
107
107
  enum Cardinality {
data/version.rb CHANGED
@@ -14,6 +14,6 @@
14
14
 
15
15
  module GRPC
16
16
  module Tools
17
- VERSION = '1.21.0'
17
+ VERSION = '1.22.0.pre1'
18
18
  end
19
19
  end
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.21.0
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-05-21 00:00:00.000000000 Z
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: '0'
127
+ version: 1.3.1
128
128
  requirements: []
129
129
  rubyforge_project:
130
130
  rubygems_version: 2.7.9