upfluence-thrift 2.6.1 → 2.7.4

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 (168) hide show
  1. checksums.yaml +4 -4
  2. data/benchmark/benchmark_constants.rb +11 -0
  3. data/benchmark/benchmark_service.rb +152 -0
  4. data/benchmark/benchmark_types.rb +10 -0
  5. data/ext/struct.c +5 -1
  6. data/lib/thrift/base_stream.rb +85 -0
  7. data/lib/thrift/bidi_stream.rb +183 -0
  8. data/lib/thrift/client.rb +84 -17
  9. data/lib/thrift/definition.rb +4 -0
  10. data/lib/thrift/inbound_stream.rb +72 -0
  11. data/lib/thrift/middleware.rb +42 -0
  12. data/lib/thrift/outbound_stream.rb +52 -0
  13. data/lib/thrift/processor.rb +287 -47
  14. data/lib/thrift/protocol/base_protocol.rb +35 -33
  15. data/lib/thrift/protocol/binary_protocol.rb +8 -1
  16. data/lib/thrift/protocol/binary_protocol_accelerated.rb +8 -0
  17. data/lib/thrift/protocol/compact_protocol.rb +8 -0
  18. data/lib/thrift/protocol/json_protocol.rb +21 -4
  19. data/lib/thrift/protocol/multiplexed_protocol.rb +5 -1
  20. data/lib/thrift/server/base_server.rb +8 -2
  21. data/lib/thrift/server/nonblocking_server.rb +5 -4
  22. data/lib/thrift/server/simple_server.rb +5 -1
  23. data/lib/thrift/server/thread_pool_server.rb +5 -1
  24. data/lib/thrift/server/threaded_server.rb +5 -1
  25. data/lib/thrift/transport/base_server_transport.rb +1 -1
  26. data/lib/thrift/transport/base_transport.rb +8 -0
  27. data/lib/thrift/transport/buffered_transport.rb +9 -1
  28. data/lib/thrift/transport/framed_transport.rb +9 -1
  29. data/lib/thrift/transport/http_client_transport.rb +4 -0
  30. data/lib/thrift/transport/io_stream_transport.rb +4 -1
  31. data/lib/thrift/transport/memory_buffer_transport.rb +4 -0
  32. data/lib/thrift/transport/server_socket.rb +5 -0
  33. data/lib/thrift/transport/socket.rb +21 -17
  34. data/lib/thrift/transport/ssl_server_socket.rb +41 -0
  35. data/lib/thrift/transport/ssl_socket.rb +51 -0
  36. data/lib/thrift/transport/unix_server_socket.rb +5 -1
  37. data/lib/thrift/transport/unix_socket.rb +5 -1
  38. data/lib/thrift/types/annotation/deprecation/deprecation_constants.rb +1 -1
  39. data/lib/thrift/types/annotation/deprecation/deprecation_types.rb +2 -2
  40. data/lib/thrift/types/annotation/exception/exception_constants.rb +17 -0
  41. data/lib/thrift/types/annotation/exception/exception_types.rb +44 -0
  42. data/lib/thrift/types/annotation/naming/naming_constants.rb +1 -1
  43. data/lib/thrift/types/annotation/naming/naming_types.rb +2 -2
  44. data/lib/thrift/types/annotation/rpc/rpc_constants.rb +17 -0
  45. data/lib/thrift/types/annotation/rpc/rpc_types.rb +74 -0
  46. data/lib/thrift/types/annotation_definition/annotation_definition_constants.rb +15 -0
  47. data/lib/thrift/types/annotation_definition/annotation_definition_types.rb +116 -0
  48. data/lib/thrift/types/constant_definition/constant_definition_constants.rb +15 -0
  49. data/lib/thrift/types/constant_definition/constant_definition_types.rb +292 -0
  50. data/lib/thrift/types/core/core_constants.rb +15 -0
  51. data/lib/thrift/types/core/core_types.rb +58 -0
  52. data/lib/thrift/types/enum_definition/enum_definition_constants.rb +15 -0
  53. data/lib/thrift/types/enum_definition/enum_definition_types.rb +106 -0
  54. data/lib/thrift/types/known/any/any_constants.rb +1 -1
  55. data/lib/thrift/types/known/any/any_types.rb +2 -2
  56. data/lib/thrift/types/known/duration/duration_constants.rb +1 -1
  57. data/lib/thrift/types/known/duration/duration_types.rb +2 -2
  58. data/lib/thrift/types/known/timestamp/timestamp_constants.rb +1 -1
  59. data/lib/thrift/types/known/timestamp/timestamp_types.rb +2 -2
  60. data/lib/thrift/types/plugin/plugin.rb +139 -0
  61. data/lib/thrift/types/plugin/plugin_constants.rb +15 -0
  62. data/lib/thrift/types/plugin/plugin_types.rb +106 -0
  63. data/lib/thrift/types/program_definition/program_definition_constants.rb +15 -0
  64. data/lib/thrift/types/program_definition/program_definition_types.rb +137 -0
  65. data/lib/thrift/types/service_definition/service_definition_constants.rb +15 -0
  66. data/lib/thrift/types/service_definition/service_definition_types.rb +160 -0
  67. data/lib/thrift/types/struct_definition/struct_definition_constants.rb +15 -0
  68. data/lib/thrift/types/struct_definition/struct_definition_types.rb +157 -0
  69. data/lib/thrift/types/type_definition/type_definition_constants.rb +15 -0
  70. data/lib/thrift/types/type_definition/type_definition_types.rb +242 -0
  71. data/lib/thrift/types/value/value_constants.rb +1 -1
  72. data/lib/thrift/types/value/value_types.rb +50 -51
  73. data/lib/thrift/types.rb +11 -3
  74. data/lib/thrift/union.rb +3 -6
  75. data/lib/thrift.rb +6 -0
  76. data/lib/types/annotation/deprecation/deprecation_constants.rb +16 -0
  77. data/lib/types/annotation/deprecation/deprecation_types.rb +42 -0
  78. data/lib/types/annotation/naming/naming_constants.rb +16 -0
  79. data/lib/types/annotation/naming/naming_types.rb +57 -0
  80. data/lib/types/annotation_definition/annotation_definition_constants.rb +14 -0
  81. data/lib/types/annotation_definition/annotation_definition_types.rb +114 -0
  82. data/lib/types/constant_definition/constant_definition_constants.rb +14 -0
  83. data/lib/types/constant_definition/constant_definition_types.rb +290 -0
  84. data/lib/types/core/core_constants.rb +14 -0
  85. data/lib/types/core/core_types.rb +56 -0
  86. data/lib/types/enum_definition/enum_definition_constants.rb +14 -0
  87. data/lib/types/enum_definition/enum_definition_types.rb +104 -0
  88. data/lib/types/known/any/any_constants.rb +16 -0
  89. data/lib/types/known/any/any_types.rb +59 -0
  90. data/lib/types/known/duration/duration_constants.rb +16 -0
  91. data/lib/types/known/duration/duration_types.rb +59 -0
  92. data/lib/types/known/timestamp/timestamp_constants.rb +16 -0
  93. data/lib/types/known/timestamp/timestamp_types.rb +59 -0
  94. data/lib/types/plugin/plugin.rb +137 -0
  95. data/lib/types/plugin/plugin_constants.rb +14 -0
  96. data/lib/types/plugin/plugin_types.rb +104 -0
  97. data/lib/types/program_definition/program_definition_constants.rb +14 -0
  98. data/lib/types/program_definition/program_definition_types.rb +135 -0
  99. data/lib/types/service_definition/service_definition_constants.rb +14 -0
  100. data/lib/types/service_definition/service_definition_types.rb +158 -0
  101. data/lib/types/struct_definition/struct_definition_constants.rb +14 -0
  102. data/lib/types/struct_definition/struct_definition_types.rb +155 -0
  103. data/lib/types/type_definition/type_definition_constants.rb +14 -0
  104. data/lib/types/type_definition/type_definition_types.rb +240 -0
  105. data/lib/types/value/value_constants.rb +14 -0
  106. data/lib/types/value/value_types.rb +330 -0
  107. data/spec/base/base_service.rb +152 -0
  108. data/spec/base/base_service_constants.rb +11 -0
  109. data/spec/base/base_service_types.rb +45 -0
  110. data/spec/base_protocol_spec.rb +79 -71
  111. data/spec/base_transport_spec.rb +155 -117
  112. data/spec/binary_protocol_accelerated_spec.rb +6 -2
  113. data/spec/binary_protocol_spec.rb +16 -8
  114. data/spec/binary_protocol_spec_shared.rb +77 -77
  115. data/spec/bytes_spec.rb +38 -38
  116. data/spec/client_spec.rb +48 -50
  117. data/spec/compact_protocol_spec.rb +59 -46
  118. data/spec/exception_spec.rb +54 -54
  119. data/spec/extended/extended_service.rb +137 -0
  120. data/spec/extended/extended_service_constants.rb +11 -0
  121. data/spec/extended/extended_service_types.rb +12 -0
  122. data/spec/flat_spec.rb +5 -5
  123. data/spec/gen-rb/flat/namespaced_nonblocking_service.rb +507 -0
  124. data/spec/gen-rb/flat/referenced_constants.rb +11 -0
  125. data/spec/gen-rb/flat/referenced_types.rb +17 -0
  126. data/spec/gen-rb/flat/thrift_namespaced_spec_constants.rb +11 -0
  127. data/spec/gen-rb/flat/thrift_namespaced_spec_types.rb +47 -0
  128. data/spec/http_client_spec.rb +96 -43
  129. data/spec/json_protocol_spec.rb +170 -131
  130. data/spec/namespaced_spec.rb +24 -27
  131. data/spec/namespaced_spec_namespace/namespaced_nonblocking_service.rb +507 -0
  132. data/spec/namespaced_spec_namespace/thrift_namespaced_spec_constants.rb +11 -0
  133. data/spec/namespaced_spec_namespace/thrift_namespaced_spec_types.rb +47 -0
  134. data/spec/nonblocking_server_spec.rb +16 -16
  135. data/spec/nonblocking_service.rb +507 -0
  136. data/spec/other_namespace/referenced_constants.rb +11 -0
  137. data/spec/other_namespace/referenced_types.rb +17 -0
  138. data/spec/processor_spec.rb +42 -31
  139. data/spec/rack_application_spec.rb +22 -26
  140. data/spec/serializer_spec.rb +20 -20
  141. data/spec/server_socket_spec.rb +27 -22
  142. data/spec/server_spec.rb +91 -51
  143. data/spec/socket_spec.rb +23 -16
  144. data/spec/socket_spec_shared.rb +31 -31
  145. data/spec/spec_helper.rb +17 -17
  146. data/spec/ssl_server_socket_spec.rb +34 -0
  147. data/spec/ssl_socket_spec.rb +78 -0
  148. data/spec/streaming_spec.rb +442 -0
  149. data/spec/struct_nested_containers_spec.rb +24 -24
  150. data/spec/struct_spec.rb +120 -120
  151. data/spec/thin_http_server_spec.rb +71 -28
  152. data/spec/thrift_spec_constants.rb +11 -0
  153. data/spec/thrift_spec_types.rb +1173 -0
  154. data/spec/types/known/any_spec.rb +2 -2
  155. data/spec/types/known/duration_spec.rb +1 -1
  156. data/spec/types/known/timestamp_spec.rb +1 -1
  157. data/spec/types/value_spec.rb +2 -1
  158. data/spec/types_spec.rb +56 -53
  159. data/spec/union_spec.rb +51 -40
  160. data/spec/unix_socket_spec.rb +43 -34
  161. data/test/debug_proto/gen-rb/debug_proto_test_constants.rb +281 -0
  162. data/test/debug_proto/gen-rb/debug_proto_test_types.rb +2033 -0
  163. data/test/debug_proto/gen-rb/empty_service.rb +52 -0
  164. data/test/debug_proto/gen-rb/inherited.rb +155 -0
  165. data/test/debug_proto/gen-rb/reverse_order_service.rb +169 -0
  166. data/test/debug_proto/gen-rb/service_for_exception_with_a_map.rb +150 -0
  167. data/test/debug_proto/gen-rb/srv.rb +718 -0
  168. metadata +202 -7
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: upfluence-thrift
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.6.1
4
+ version: 2.7.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thrift Developers
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-10-11 00:00:00.000000000 Z
10
+ date: 2026-07-28 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: rspec
@@ -94,6 +93,20 @@ dependencies:
94
93
  - - ">="
95
94
  - !ruby/object:Gem::Version
96
95
  version: '0'
96
+ - !ruby/object:Gem::Dependency
97
+ name: base64
98
+ requirement: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - ">="
101
+ - !ruby/object:Gem::Version
102
+ version: '0'
103
+ type: :development
104
+ prerelease: false
105
+ version_requirements: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - ">="
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
97
110
  description: Ruby bindings for the Apache Thrift RPC system
98
111
  email:
99
112
  - dev@thrift.apache.org
@@ -120,15 +133,19 @@ extra_rdoc_files:
120
133
  - ext/strlcpy.h
121
134
  - ext/struct.h
122
135
  - ext/extconf.rb
136
+ - lib/thrift/base_stream.rb
137
+ - lib/thrift/bidi_stream.rb
123
138
  - lib/thrift/bytes.rb
124
139
  - lib/thrift/client.rb
125
140
  - lib/thrift/core_ext/fixnum.rb
126
141
  - lib/thrift/core_ext.rb
127
142
  - lib/thrift/definition.rb
128
143
  - lib/thrift/exceptions.rb
144
+ - lib/thrift/inbound_stream.rb
129
145
  - lib/thrift/metrics.rb
130
146
  - lib/thrift/middleware.rb
131
147
  - lib/thrift/multiplexed_processor.rb
148
+ - lib/thrift/outbound_stream.rb
132
149
  - lib/thrift/processor.rb
133
150
  - lib/thrift/protocol/base_protocol.rb
134
151
  - lib/thrift/protocol/binary_protocol.rb
@@ -159,13 +176,27 @@ extra_rdoc_files:
159
176
  - lib/thrift/transport/memory_buffer_transport.rb
160
177
  - lib/thrift/transport/server_socket.rb
161
178
  - lib/thrift/transport/socket.rb
179
+ - lib/thrift/transport/ssl_server_socket.rb
180
+ - lib/thrift/transport/ssl_socket.rb
162
181
  - lib/thrift/transport/unix_server_socket.rb
163
182
  - lib/thrift/transport/unix_socket.rb
164
183
  - lib/thrift/types/annotation/deprecation/deprecation_constants.rb
165
184
  - lib/thrift/types/annotation/deprecation/deprecation_types.rb
185
+ - lib/thrift/types/annotation/exception/exception_constants.rb
186
+ - lib/thrift/types/annotation/exception/exception_types.rb
166
187
  - lib/thrift/types/annotation/naming/naming.rb
167
188
  - lib/thrift/types/annotation/naming/naming_constants.rb
168
189
  - lib/thrift/types/annotation/naming/naming_types.rb
190
+ - lib/thrift/types/annotation/rpc/rpc_constants.rb
191
+ - lib/thrift/types/annotation/rpc/rpc_types.rb
192
+ - lib/thrift/types/annotation_definition/annotation_definition_constants.rb
193
+ - lib/thrift/types/annotation_definition/annotation_definition_types.rb
194
+ - lib/thrift/types/constant_definition/constant_definition_constants.rb
195
+ - lib/thrift/types/constant_definition/constant_definition_types.rb
196
+ - lib/thrift/types/core/core_constants.rb
197
+ - lib/thrift/types/core/core_types.rb
198
+ - lib/thrift/types/enum_definition/enum_definition_constants.rb
199
+ - lib/thrift/types/enum_definition/enum_definition_types.rb
169
200
  - lib/thrift/types/known/any/any.rb
170
201
  - lib/thrift/types/known/any/any_constants.rb
171
202
  - lib/thrift/types/known/any/any_types.rb
@@ -175,16 +206,61 @@ extra_rdoc_files:
175
206
  - lib/thrift/types/known/timestamp/timestamp.rb
176
207
  - lib/thrift/types/known/timestamp/timestamp_constants.rb
177
208
  - lib/thrift/types/known/timestamp/timestamp_types.rb
209
+ - lib/thrift/types/plugin/plugin.rb
210
+ - lib/thrift/types/plugin/plugin_constants.rb
211
+ - lib/thrift/types/plugin/plugin_types.rb
212
+ - lib/thrift/types/program_definition/program_definition_constants.rb
213
+ - lib/thrift/types/program_definition/program_definition_types.rb
214
+ - lib/thrift/types/service_definition/service_definition_constants.rb
215
+ - lib/thrift/types/service_definition/service_definition_types.rb
216
+ - lib/thrift/types/struct_definition/struct_definition_constants.rb
217
+ - lib/thrift/types/struct_definition/struct_definition_types.rb
218
+ - lib/thrift/types/type_definition/type_definition_constants.rb
219
+ - lib/thrift/types/type_definition/type_definition_types.rb
178
220
  - lib/thrift/types/value/value.rb
179
221
  - lib/thrift/types/value/value_constants.rb
180
222
  - lib/thrift/types/value/value_types.rb
181
223
  - lib/thrift/types.rb
182
224
  - lib/thrift/union.rb
183
225
  - lib/thrift.rb
226
+ - lib/types/annotation/deprecation/deprecation_constants.rb
227
+ - lib/types/annotation/deprecation/deprecation_types.rb
228
+ - lib/types/annotation/naming/naming_constants.rb
229
+ - lib/types/annotation/naming/naming_types.rb
230
+ - lib/types/annotation_definition/annotation_definition_constants.rb
231
+ - lib/types/annotation_definition/annotation_definition_types.rb
232
+ - lib/types/constant_definition/constant_definition_constants.rb
233
+ - lib/types/constant_definition/constant_definition_types.rb
234
+ - lib/types/core/core_constants.rb
235
+ - lib/types/core/core_types.rb
236
+ - lib/types/enum_definition/enum_definition_constants.rb
237
+ - lib/types/enum_definition/enum_definition_types.rb
238
+ - lib/types/known/any/any_constants.rb
239
+ - lib/types/known/any/any_types.rb
240
+ - lib/types/known/duration/duration_constants.rb
241
+ - lib/types/known/duration/duration_types.rb
242
+ - lib/types/known/timestamp/timestamp_constants.rb
243
+ - lib/types/known/timestamp/timestamp_types.rb
244
+ - lib/types/plugin/plugin.rb
245
+ - lib/types/plugin/plugin_constants.rb
246
+ - lib/types/plugin/plugin_types.rb
247
+ - lib/types/program_definition/program_definition_constants.rb
248
+ - lib/types/program_definition/program_definition_types.rb
249
+ - lib/types/service_definition/service_definition_constants.rb
250
+ - lib/types/service_definition/service_definition_types.rb
251
+ - lib/types/struct_definition/struct_definition_constants.rb
252
+ - lib/types/struct_definition/struct_definition_types.rb
253
+ - lib/types/type_definition/type_definition_constants.rb
254
+ - lib/types/type_definition/type_definition_types.rb
255
+ - lib/types/value/value_constants.rb
256
+ - lib/types/value/value_types.rb
184
257
  files:
185
258
  - README.md
186
259
  - benchmark/Benchmark.thrift
187
260
  - benchmark/benchmark.rb
261
+ - benchmark/benchmark_constants.rb
262
+ - benchmark/benchmark_service.rb
263
+ - benchmark/benchmark_types.rb
188
264
  - benchmark/client.rb
189
265
  - benchmark/server.rb
190
266
  - benchmark/thin_server.rb
@@ -207,15 +283,19 @@ files:
207
283
  - ext/struct.h
208
284
  - ext/thrift_native.c
209
285
  - lib/thrift.rb
286
+ - lib/thrift/base_stream.rb
287
+ - lib/thrift/bidi_stream.rb
210
288
  - lib/thrift/bytes.rb
211
289
  - lib/thrift/client.rb
212
290
  - lib/thrift/core_ext.rb
213
291
  - lib/thrift/core_ext/fixnum.rb
214
292
  - lib/thrift/definition.rb
215
293
  - lib/thrift/exceptions.rb
294
+ - lib/thrift/inbound_stream.rb
216
295
  - lib/thrift/metrics.rb
217
296
  - lib/thrift/middleware.rb
218
297
  - lib/thrift/multiplexed_processor.rb
298
+ - lib/thrift/outbound_stream.rb
219
299
  - lib/thrift/processor.rb
220
300
  - lib/thrift/protocol/base_protocol.rb
221
301
  - lib/thrift/protocol/binary_protocol.rb
@@ -246,14 +326,28 @@ files:
246
326
  - lib/thrift/transport/memory_buffer_transport.rb
247
327
  - lib/thrift/transport/server_socket.rb
248
328
  - lib/thrift/transport/socket.rb
329
+ - lib/thrift/transport/ssl_server_socket.rb
330
+ - lib/thrift/transport/ssl_socket.rb
249
331
  - lib/thrift/transport/unix_server_socket.rb
250
332
  - lib/thrift/transport/unix_socket.rb
251
333
  - lib/thrift/types.rb
252
334
  - lib/thrift/types/annotation/deprecation/deprecation_constants.rb
253
335
  - lib/thrift/types/annotation/deprecation/deprecation_types.rb
336
+ - lib/thrift/types/annotation/exception/exception_constants.rb
337
+ - lib/thrift/types/annotation/exception/exception_types.rb
254
338
  - lib/thrift/types/annotation/naming/naming.rb
255
339
  - lib/thrift/types/annotation/naming/naming_constants.rb
256
340
  - lib/thrift/types/annotation/naming/naming_types.rb
341
+ - lib/thrift/types/annotation/rpc/rpc_constants.rb
342
+ - lib/thrift/types/annotation/rpc/rpc_types.rb
343
+ - lib/thrift/types/annotation_definition/annotation_definition_constants.rb
344
+ - lib/thrift/types/annotation_definition/annotation_definition_types.rb
345
+ - lib/thrift/types/constant_definition/constant_definition_constants.rb
346
+ - lib/thrift/types/constant_definition/constant_definition_types.rb
347
+ - lib/thrift/types/core/core_constants.rb
348
+ - lib/thrift/types/core/core_types.rb
349
+ - lib/thrift/types/enum_definition/enum_definition_constants.rb
350
+ - lib/thrift/types/enum_definition/enum_definition_types.rb
257
351
  - lib/thrift/types/known/any/any.rb
258
352
  - lib/thrift/types/known/any/any_constants.rb
259
353
  - lib/thrift/types/known/any/any_types.rb
@@ -263,15 +357,60 @@ files:
263
357
  - lib/thrift/types/known/timestamp/timestamp.rb
264
358
  - lib/thrift/types/known/timestamp/timestamp_constants.rb
265
359
  - lib/thrift/types/known/timestamp/timestamp_types.rb
360
+ - lib/thrift/types/plugin/plugin.rb
361
+ - lib/thrift/types/plugin/plugin_constants.rb
362
+ - lib/thrift/types/plugin/plugin_types.rb
363
+ - lib/thrift/types/program_definition/program_definition_constants.rb
364
+ - lib/thrift/types/program_definition/program_definition_types.rb
365
+ - lib/thrift/types/service_definition/service_definition_constants.rb
366
+ - lib/thrift/types/service_definition/service_definition_types.rb
367
+ - lib/thrift/types/struct_definition/struct_definition_constants.rb
368
+ - lib/thrift/types/struct_definition/struct_definition_types.rb
369
+ - lib/thrift/types/type_definition/type_definition_constants.rb
370
+ - lib/thrift/types/type_definition/type_definition_types.rb
266
371
  - lib/thrift/types/value/value.rb
267
372
  - lib/thrift/types/value/value_constants.rb
268
373
  - lib/thrift/types/value/value_types.rb
269
374
  - lib/thrift/union.rb
375
+ - lib/types/annotation/deprecation/deprecation_constants.rb
376
+ - lib/types/annotation/deprecation/deprecation_types.rb
377
+ - lib/types/annotation/naming/naming_constants.rb
378
+ - lib/types/annotation/naming/naming_types.rb
379
+ - lib/types/annotation_definition/annotation_definition_constants.rb
380
+ - lib/types/annotation_definition/annotation_definition_types.rb
381
+ - lib/types/constant_definition/constant_definition_constants.rb
382
+ - lib/types/constant_definition/constant_definition_types.rb
383
+ - lib/types/core/core_constants.rb
384
+ - lib/types/core/core_types.rb
385
+ - lib/types/enum_definition/enum_definition_constants.rb
386
+ - lib/types/enum_definition/enum_definition_types.rb
387
+ - lib/types/known/any/any_constants.rb
388
+ - lib/types/known/any/any_types.rb
389
+ - lib/types/known/duration/duration_constants.rb
390
+ - lib/types/known/duration/duration_types.rb
391
+ - lib/types/known/timestamp/timestamp_constants.rb
392
+ - lib/types/known/timestamp/timestamp_types.rb
393
+ - lib/types/plugin/plugin.rb
394
+ - lib/types/plugin/plugin_constants.rb
395
+ - lib/types/plugin/plugin_types.rb
396
+ - lib/types/program_definition/program_definition_constants.rb
397
+ - lib/types/program_definition/program_definition_types.rb
398
+ - lib/types/service_definition/service_definition_constants.rb
399
+ - lib/types/service_definition/service_definition_types.rb
400
+ - lib/types/struct_definition/struct_definition_constants.rb
401
+ - lib/types/struct_definition/struct_definition_types.rb
402
+ - lib/types/type_definition/type_definition_constants.rb
403
+ - lib/types/type_definition/type_definition_types.rb
404
+ - lib/types/value/value_constants.rb
405
+ - lib/types/value/value_types.rb
270
406
  - spec/BaseService.thrift
271
407
  - spec/ExtendedService.thrift
272
408
  - spec/Referenced.thrift
273
409
  - spec/ThriftNamespacedSpec.thrift
274
410
  - spec/ThriftSpec.thrift
411
+ - spec/base/base_service.rb
412
+ - spec/base/base_service_constants.rb
413
+ - spec/base/base_service_types.rb
275
414
  - spec/base_protocol_spec.rb
276
415
  - spec/base_transport_spec.rb
277
416
  - spec/binary_protocol_accelerated_spec.rb
@@ -281,11 +420,25 @@ files:
281
420
  - spec/client_spec.rb
282
421
  - spec/compact_protocol_spec.rb
283
422
  - spec/exception_spec.rb
423
+ - spec/extended/extended_service.rb
424
+ - spec/extended/extended_service_constants.rb
425
+ - spec/extended/extended_service_types.rb
284
426
  - spec/flat_spec.rb
427
+ - spec/gen-rb/flat/namespaced_nonblocking_service.rb
428
+ - spec/gen-rb/flat/referenced_constants.rb
429
+ - spec/gen-rb/flat/referenced_types.rb
430
+ - spec/gen-rb/flat/thrift_namespaced_spec_constants.rb
431
+ - spec/gen-rb/flat/thrift_namespaced_spec_types.rb
285
432
  - spec/http_client_spec.rb
286
433
  - spec/json_protocol_spec.rb
287
434
  - spec/namespaced_spec.rb
435
+ - spec/namespaced_spec_namespace/namespaced_nonblocking_service.rb
436
+ - spec/namespaced_spec_namespace/thrift_namespaced_spec_constants.rb
437
+ - spec/namespaced_spec_namespace/thrift_namespaced_spec_types.rb
288
438
  - spec/nonblocking_server_spec.rb
439
+ - spec/nonblocking_service.rb
440
+ - spec/other_namespace/referenced_constants.rb
441
+ - spec/other_namespace/referenced_types.rb
289
442
  - spec/processor_spec.rb
290
443
  - spec/rack_application_spec.rb
291
444
  - spec/serializer_spec.rb
@@ -294,9 +447,14 @@ files:
294
447
  - spec/socket_spec.rb
295
448
  - spec/socket_spec_shared.rb
296
449
  - spec/spec_helper.rb
450
+ - spec/ssl_server_socket_spec.rb
451
+ - spec/ssl_socket_spec.rb
452
+ - spec/streaming_spec.rb
297
453
  - spec/struct_nested_containers_spec.rb
298
454
  - spec/struct_spec.rb
299
455
  - spec/thin_http_server_spec.rb
456
+ - spec/thrift_spec_constants.rb
457
+ - spec/thrift_spec_types.rb
300
458
  - spec/types/known/any_spec.rb
301
459
  - spec/types/known/duration_spec.rb
302
460
  - spec/types/known/timestamp_spec.rb
@@ -304,11 +462,17 @@ files:
304
462
  - spec/types_spec.rb
305
463
  - spec/union_spec.rb
306
464
  - spec/unix_socket_spec.rb
465
+ - test/debug_proto/gen-rb/debug_proto_test_constants.rb
466
+ - test/debug_proto/gen-rb/debug_proto_test_types.rb
467
+ - test/debug_proto/gen-rb/empty_service.rb
468
+ - test/debug_proto/gen-rb/inherited.rb
469
+ - test/debug_proto/gen-rb/reverse_order_service.rb
470
+ - test/debug_proto/gen-rb/service_for_exception_with_a_map.rb
471
+ - test/debug_proto/gen-rb/srv.rb
307
472
  homepage: http://thrift.apache.org
308
473
  licenses:
309
- - Apache 2.0
474
+ - Apache-2.0
310
475
  metadata: {}
311
- post_install_message:
312
476
  rdoc_options:
313
477
  - "--line-numbers"
314
478
  - "--inline-source"
@@ -330,16 +494,25 @@ required_rubygems_version: !ruby/object:Gem::Requirement
330
494
  - !ruby/object:Gem::Version
331
495
  version: '0'
332
496
  requirements: []
333
- rubygems_version: 3.5.3
334
- signing_key:
497
+ rubygems_version: 3.6.2
335
498
  specification_version: 4
336
499
  summary: Ruby bindings for Apache Thrift
337
500
  test_files:
501
+ - test/debug_proto/gen-rb/debug_proto_test_constants.rb
502
+ - test/debug_proto/gen-rb/debug_proto_test_types.rb
503
+ - test/debug_proto/gen-rb/empty_service.rb
504
+ - test/debug_proto/gen-rb/inherited.rb
505
+ - test/debug_proto/gen-rb/reverse_order_service.rb
506
+ - test/debug_proto/gen-rb/service_for_exception_with_a_map.rb
507
+ - test/debug_proto/gen-rb/srv.rb
338
508
  - spec/BaseService.thrift
339
509
  - spec/ExtendedService.thrift
340
510
  - spec/Referenced.thrift
341
511
  - spec/ThriftNamespacedSpec.thrift
342
512
  - spec/ThriftSpec.thrift
513
+ - spec/base/base_service.rb
514
+ - spec/base/base_service_constants.rb
515
+ - spec/base/base_service_types.rb
343
516
  - spec/base_protocol_spec.rb
344
517
  - spec/base_transport_spec.rb
345
518
  - spec/binary_protocol_accelerated_spec.rb
@@ -349,11 +522,25 @@ test_files:
349
522
  - spec/client_spec.rb
350
523
  - spec/compact_protocol_spec.rb
351
524
  - spec/exception_spec.rb
525
+ - spec/extended/extended_service.rb
526
+ - spec/extended/extended_service_constants.rb
527
+ - spec/extended/extended_service_types.rb
352
528
  - spec/flat_spec.rb
529
+ - spec/gen-rb/flat/namespaced_nonblocking_service.rb
530
+ - spec/gen-rb/flat/referenced_constants.rb
531
+ - spec/gen-rb/flat/referenced_types.rb
532
+ - spec/gen-rb/flat/thrift_namespaced_spec_constants.rb
533
+ - spec/gen-rb/flat/thrift_namespaced_spec_types.rb
353
534
  - spec/http_client_spec.rb
354
535
  - spec/json_protocol_spec.rb
355
536
  - spec/namespaced_spec.rb
537
+ - spec/namespaced_spec_namespace/namespaced_nonblocking_service.rb
538
+ - spec/namespaced_spec_namespace/thrift_namespaced_spec_constants.rb
539
+ - spec/namespaced_spec_namespace/thrift_namespaced_spec_types.rb
356
540
  - spec/nonblocking_server_spec.rb
541
+ - spec/nonblocking_service.rb
542
+ - spec/other_namespace/referenced_constants.rb
543
+ - spec/other_namespace/referenced_types.rb
357
544
  - spec/processor_spec.rb
358
545
  - spec/rack_application_spec.rb
359
546
  - spec/serializer_spec.rb
@@ -362,9 +549,14 @@ test_files:
362
549
  - spec/socket_spec.rb
363
550
  - spec/socket_spec_shared.rb
364
551
  - spec/spec_helper.rb
552
+ - spec/ssl_server_socket_spec.rb
553
+ - spec/ssl_socket_spec.rb
554
+ - spec/streaming_spec.rb
365
555
  - spec/struct_nested_containers_spec.rb
366
556
  - spec/struct_spec.rb
367
557
  - spec/thin_http_server_spec.rb
558
+ - spec/thrift_spec_constants.rb
559
+ - spec/thrift_spec_types.rb
368
560
  - spec/types/known/any_spec.rb
369
561
  - spec/types/known/duration_spec.rb
370
562
  - spec/types/known/timestamp_spec.rb
@@ -374,6 +566,9 @@ test_files:
374
566
  - spec/unix_socket_spec.rb
375
567
  - benchmark/Benchmark.thrift
376
568
  - benchmark/benchmark.rb
569
+ - benchmark/benchmark_constants.rb
570
+ - benchmark/benchmark_service.rb
571
+ - benchmark/benchmark_types.rb
377
572
  - benchmark/client.rb
378
573
  - benchmark/server.rb
379
574
  - benchmark/thin_server.rb