upfluence-thrift 2.6.8 → 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 (167) hide show
  1. checksums.yaml +4 -4
  2. data/benchmark/{gen-rb/benchmark_constants.rb → benchmark_constants.rb} +1 -1
  3. data/benchmark/{gen-rb/benchmark_service.rb → benchmark_service.rb} +2 -2
  4. data/benchmark/{gen-rb/benchmark_types.rb → benchmark_types.rb} +1 -1
  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/inbound_stream.rb +72 -0
  10. data/lib/thrift/middleware.rb +42 -0
  11. data/lib/thrift/outbound_stream.rb +52 -0
  12. data/lib/thrift/processor.rb +287 -47
  13. data/lib/thrift/protocol/base_protocol.rb +35 -33
  14. data/lib/thrift/protocol/binary_protocol.rb +8 -1
  15. data/lib/thrift/protocol/binary_protocol_accelerated.rb +8 -0
  16. data/lib/thrift/protocol/compact_protocol.rb +8 -0
  17. data/lib/thrift/protocol/json_protocol.rb +21 -4
  18. data/lib/thrift/protocol/multiplexed_protocol.rb +5 -1
  19. data/lib/thrift/server/base_server.rb +8 -2
  20. data/lib/thrift/server/nonblocking_server.rb +5 -4
  21. data/lib/thrift/server/simple_server.rb +5 -1
  22. data/lib/thrift/server/thread_pool_server.rb +5 -1
  23. data/lib/thrift/server/threaded_server.rb +5 -1
  24. data/lib/thrift/transport/base_server_transport.rb +1 -1
  25. data/lib/thrift/transport/base_transport.rb +8 -0
  26. data/lib/thrift/transport/buffered_transport.rb +9 -1
  27. data/lib/thrift/transport/framed_transport.rb +9 -1
  28. data/lib/thrift/transport/http_client_transport.rb +4 -0
  29. data/lib/thrift/transport/io_stream_transport.rb +4 -1
  30. data/lib/thrift/transport/memory_buffer_transport.rb +4 -0
  31. data/lib/thrift/transport/server_socket.rb +5 -0
  32. data/lib/thrift/transport/socket.rb +21 -17
  33. data/lib/thrift/transport/ssl_server_socket.rb +41 -0
  34. data/lib/thrift/transport/ssl_socket.rb +51 -0
  35. data/lib/thrift/transport/unix_server_socket.rb +5 -1
  36. data/lib/thrift/transport/unix_socket.rb +5 -1
  37. data/lib/thrift/types/annotation/deprecation/deprecation_constants.rb +1 -1
  38. data/lib/thrift/types/annotation/deprecation/deprecation_types.rb +2 -2
  39. data/lib/thrift/types/annotation/exception/exception_constants.rb +17 -0
  40. data/lib/thrift/types/annotation/exception/exception_types.rb +44 -0
  41. data/lib/thrift/types/annotation/naming/naming_constants.rb +1 -1
  42. data/lib/thrift/types/annotation/naming/naming_types.rb +2 -2
  43. data/lib/thrift/types/annotation/rpc/rpc_constants.rb +17 -0
  44. data/lib/thrift/types/annotation/rpc/rpc_types.rb +74 -0
  45. data/lib/thrift/types/annotation_definition/annotation_definition_constants.rb +15 -0
  46. data/lib/thrift/types/annotation_definition/annotation_definition_types.rb +116 -0
  47. data/lib/thrift/types/constant_definition/constant_definition_constants.rb +15 -0
  48. data/lib/thrift/types/constant_definition/constant_definition_types.rb +292 -0
  49. data/lib/thrift/types/core/core_constants.rb +15 -0
  50. data/lib/thrift/types/core/core_types.rb +58 -0
  51. data/lib/thrift/types/enum_definition/enum_definition_constants.rb +15 -0
  52. data/lib/thrift/types/enum_definition/enum_definition_types.rb +106 -0
  53. data/lib/thrift/types/known/any/any_constants.rb +1 -1
  54. data/lib/thrift/types/known/any/any_types.rb +2 -2
  55. data/lib/thrift/types/known/duration/duration_constants.rb +1 -1
  56. data/lib/thrift/types/known/duration/duration_types.rb +2 -2
  57. data/lib/thrift/types/known/timestamp/timestamp_constants.rb +1 -1
  58. data/lib/thrift/types/known/timestamp/timestamp_types.rb +2 -2
  59. data/lib/thrift/types/plugin/plugin.rb +139 -0
  60. data/lib/thrift/types/plugin/plugin_constants.rb +15 -0
  61. data/lib/thrift/types/plugin/plugin_types.rb +106 -0
  62. data/lib/thrift/types/program_definition/program_definition_constants.rb +15 -0
  63. data/lib/thrift/types/program_definition/program_definition_types.rb +137 -0
  64. data/lib/thrift/types/service_definition/service_definition_constants.rb +15 -0
  65. data/lib/thrift/types/service_definition/service_definition_types.rb +160 -0
  66. data/lib/thrift/types/struct_definition/struct_definition_constants.rb +15 -0
  67. data/lib/thrift/types/struct_definition/struct_definition_types.rb +157 -0
  68. data/lib/thrift/types/type_definition/type_definition_constants.rb +15 -0
  69. data/lib/thrift/types/type_definition/type_definition_types.rb +242 -0
  70. data/lib/thrift/types/value/value_constants.rb +1 -1
  71. data/lib/thrift/types/value/value_types.rb +50 -51
  72. data/lib/thrift/types.rb +11 -3
  73. data/lib/thrift/union.rb +3 -6
  74. data/lib/thrift.rb +6 -0
  75. data/lib/types/annotation/deprecation/deprecation_constants.rb +16 -0
  76. data/lib/types/annotation/deprecation/deprecation_types.rb +42 -0
  77. data/lib/types/annotation/naming/naming_constants.rb +16 -0
  78. data/lib/types/annotation/naming/naming_types.rb +57 -0
  79. data/lib/types/annotation_definition/annotation_definition_constants.rb +14 -0
  80. data/lib/types/annotation_definition/annotation_definition_types.rb +114 -0
  81. data/lib/types/constant_definition/constant_definition_constants.rb +14 -0
  82. data/lib/types/constant_definition/constant_definition_types.rb +290 -0
  83. data/lib/types/core/core_constants.rb +14 -0
  84. data/lib/types/core/core_types.rb +56 -0
  85. data/lib/types/enum_definition/enum_definition_constants.rb +14 -0
  86. data/lib/types/enum_definition/enum_definition_types.rb +104 -0
  87. data/lib/types/known/any/any_constants.rb +16 -0
  88. data/lib/types/known/any/any_types.rb +59 -0
  89. data/lib/types/known/duration/duration_constants.rb +16 -0
  90. data/lib/types/known/duration/duration_types.rb +59 -0
  91. data/lib/types/known/timestamp/timestamp_constants.rb +16 -0
  92. data/lib/types/known/timestamp/timestamp_types.rb +59 -0
  93. data/lib/types/plugin/plugin.rb +137 -0
  94. data/lib/types/plugin/plugin_constants.rb +14 -0
  95. data/lib/types/plugin/plugin_types.rb +104 -0
  96. data/lib/types/program_definition/program_definition_constants.rb +14 -0
  97. data/lib/types/program_definition/program_definition_types.rb +135 -0
  98. data/lib/types/service_definition/service_definition_constants.rb +14 -0
  99. data/lib/types/service_definition/service_definition_types.rb +158 -0
  100. data/lib/types/struct_definition/struct_definition_constants.rb +14 -0
  101. data/lib/types/struct_definition/struct_definition_types.rb +155 -0
  102. data/lib/types/type_definition/type_definition_constants.rb +14 -0
  103. data/lib/types/type_definition/type_definition_types.rb +240 -0
  104. data/lib/types/value/value_constants.rb +14 -0
  105. data/lib/types/value/value_types.rb +330 -0
  106. data/spec/{gen-rb/base → base}/base_service.rb +2 -2
  107. data/spec/{gen-rb/base → base}/base_service_constants.rb +1 -1
  108. data/spec/{gen-rb/base → base}/base_service_types.rb +1 -1
  109. data/spec/base_protocol_spec.rb +79 -71
  110. data/spec/base_transport_spec.rb +155 -117
  111. data/spec/binary_protocol_accelerated_spec.rb +6 -2
  112. data/spec/binary_protocol_spec.rb +16 -8
  113. data/spec/binary_protocol_spec_shared.rb +77 -77
  114. data/spec/bytes_spec.rb +38 -38
  115. data/spec/client_spec.rb +48 -50
  116. data/spec/compact_protocol_spec.rb +59 -46
  117. data/spec/exception_spec.rb +54 -54
  118. data/spec/{gen-rb/extended → extended}/extended_service.rb +2 -2
  119. data/spec/{gen-rb/extended → extended}/extended_service_constants.rb +1 -1
  120. data/spec/{gen-rb/extended → extended}/extended_service_types.rb +1 -1
  121. data/spec/flat_spec.rb +5 -5
  122. data/spec/gen-rb/flat/namespaced_nonblocking_service.rb +4 -4
  123. data/spec/gen-rb/flat/referenced_constants.rb +1 -1
  124. data/spec/gen-rb/flat/referenced_types.rb +1 -1
  125. data/spec/gen-rb/flat/thrift_namespaced_spec_constants.rb +1 -1
  126. data/spec/gen-rb/flat/thrift_namespaced_spec_types.rb +1 -1
  127. data/spec/http_client_spec.rb +96 -43
  128. data/spec/json_protocol_spec.rb +170 -131
  129. data/spec/namespaced_spec.rb +24 -27
  130. data/spec/{gen-rb/namespaced_spec_namespace → namespaced_spec_namespace}/namespaced_nonblocking_service.rb +4 -4
  131. data/spec/{gen-rb/namespaced_spec_namespace → namespaced_spec_namespace}/thrift_namespaced_spec_constants.rb +1 -1
  132. data/spec/{gen-rb/namespaced_spec_namespace → namespaced_spec_namespace}/thrift_namespaced_spec_types.rb +1 -1
  133. data/spec/nonblocking_server_spec.rb +16 -16
  134. data/spec/{gen-rb/nonblocking_service.rb → nonblocking_service.rb} +4 -4
  135. data/spec/{gen-rb/other_namespace → other_namespace}/referenced_constants.rb +1 -1
  136. data/spec/{gen-rb/other_namespace → other_namespace}/referenced_types.rb +1 -1
  137. data/spec/processor_spec.rb +42 -31
  138. data/spec/rack_application_spec.rb +22 -26
  139. data/spec/serializer_spec.rb +20 -20
  140. data/spec/server_socket_spec.rb +27 -22
  141. data/spec/server_spec.rb +91 -51
  142. data/spec/socket_spec.rb +23 -16
  143. data/spec/socket_spec_shared.rb +31 -31
  144. data/spec/spec_helper.rb +1 -1
  145. data/spec/ssl_server_socket_spec.rb +34 -0
  146. data/spec/ssl_socket_spec.rb +78 -0
  147. data/spec/streaming_spec.rb +442 -0
  148. data/spec/struct_nested_containers_spec.rb +24 -24
  149. data/spec/struct_spec.rb +120 -120
  150. data/spec/thin_http_server_spec.rb +71 -28
  151. data/spec/{gen-rb/thrift_spec_constants.rb → thrift_spec_constants.rb} +1 -1
  152. data/spec/{gen-rb/thrift_spec_types.rb → thrift_spec_types.rb} +16 -16
  153. data/spec/types/known/any_spec.rb +2 -2
  154. data/spec/types/known/duration_spec.rb +1 -1
  155. data/spec/types/known/timestamp_spec.rb +1 -1
  156. data/spec/types/value_spec.rb +2 -1
  157. data/spec/types_spec.rb +56 -53
  158. data/spec/union_spec.rb +51 -40
  159. data/spec/unix_socket_spec.rb +43 -34
  160. data/test/debug_proto/gen-rb/debug_proto_test_constants.rb +267 -260
  161. data/test/debug_proto/gen-rb/debug_proto_test_types.rb +1481 -1416
  162. data/test/debug_proto/gen-rb/empty_service.rb +31 -27
  163. data/test/debug_proto/gen-rb/inherited.rb +102 -98
  164. data/test/debug_proto/gen-rb/reverse_order_service.rb +112 -108
  165. data/test/debug_proto/gen-rb/service_for_exception_with_a_map.rb +99 -95
  166. data/test/debug_proto/gen-rb/srv.rb +525 -406
  167. metadata +178 -41
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.8
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-24 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,20 +206,62 @@ 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
- - benchmark/gen-rb/benchmark_constants.rb
190
- - benchmark/gen-rb/benchmark_service.rb
191
- - benchmark/gen-rb/benchmark_types.rb
192
265
  - benchmark/server.rb
193
266
  - benchmark/thin_server.rb
194
267
  - ext/binary_protocol_accelerated.c
@@ -210,15 +283,19 @@ files:
210
283
  - ext/struct.h
211
284
  - ext/thrift_native.c
212
285
  - lib/thrift.rb
286
+ - lib/thrift/base_stream.rb
287
+ - lib/thrift/bidi_stream.rb
213
288
  - lib/thrift/bytes.rb
214
289
  - lib/thrift/client.rb
215
290
  - lib/thrift/core_ext.rb
216
291
  - lib/thrift/core_ext/fixnum.rb
217
292
  - lib/thrift/definition.rb
218
293
  - lib/thrift/exceptions.rb
294
+ - lib/thrift/inbound_stream.rb
219
295
  - lib/thrift/metrics.rb
220
296
  - lib/thrift/middleware.rb
221
297
  - lib/thrift/multiplexed_processor.rb
298
+ - lib/thrift/outbound_stream.rb
222
299
  - lib/thrift/processor.rb
223
300
  - lib/thrift/protocol/base_protocol.rb
224
301
  - lib/thrift/protocol/binary_protocol.rb
@@ -249,14 +326,28 @@ files:
249
326
  - lib/thrift/transport/memory_buffer_transport.rb
250
327
  - lib/thrift/transport/server_socket.rb
251
328
  - lib/thrift/transport/socket.rb
329
+ - lib/thrift/transport/ssl_server_socket.rb
330
+ - lib/thrift/transport/ssl_socket.rb
252
331
  - lib/thrift/transport/unix_server_socket.rb
253
332
  - lib/thrift/transport/unix_socket.rb
254
333
  - lib/thrift/types.rb
255
334
  - lib/thrift/types/annotation/deprecation/deprecation_constants.rb
256
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
257
338
  - lib/thrift/types/annotation/naming/naming.rb
258
339
  - lib/thrift/types/annotation/naming/naming_constants.rb
259
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
260
351
  - lib/thrift/types/known/any/any.rb
261
352
  - lib/thrift/types/known/any/any_constants.rb
262
353
  - lib/thrift/types/known/any/any_types.rb
@@ -266,15 +357,60 @@ files:
266
357
  - lib/thrift/types/known/timestamp/timestamp.rb
267
358
  - lib/thrift/types/known/timestamp/timestamp_constants.rb
268
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
269
371
  - lib/thrift/types/value/value.rb
270
372
  - lib/thrift/types/value/value_constants.rb
271
373
  - lib/thrift/types/value/value_types.rb
272
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
273
406
  - spec/BaseService.thrift
274
407
  - spec/ExtendedService.thrift
275
408
  - spec/Referenced.thrift
276
409
  - spec/ThriftNamespacedSpec.thrift
277
410
  - spec/ThriftSpec.thrift
411
+ - spec/base/base_service.rb
412
+ - spec/base/base_service_constants.rb
413
+ - spec/base/base_service_types.rb
278
414
  - spec/base_protocol_spec.rb
279
415
  - spec/base_transport_spec.rb
280
416
  - spec/binary_protocol_accelerated_spec.rb
@@ -284,30 +420,25 @@ files:
284
420
  - spec/client_spec.rb
285
421
  - spec/compact_protocol_spec.rb
286
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
287
426
  - spec/flat_spec.rb
288
- - spec/gen-rb/base/base_service.rb
289
- - spec/gen-rb/base/base_service_constants.rb
290
- - spec/gen-rb/base/base_service_types.rb
291
- - spec/gen-rb/extended/extended_service.rb
292
- - spec/gen-rb/extended/extended_service_constants.rb
293
- - spec/gen-rb/extended/extended_service_types.rb
294
427
  - spec/gen-rb/flat/namespaced_nonblocking_service.rb
295
428
  - spec/gen-rb/flat/referenced_constants.rb
296
429
  - spec/gen-rb/flat/referenced_types.rb
297
430
  - spec/gen-rb/flat/thrift_namespaced_spec_constants.rb
298
431
  - spec/gen-rb/flat/thrift_namespaced_spec_types.rb
299
- - spec/gen-rb/namespaced_spec_namespace/namespaced_nonblocking_service.rb
300
- - spec/gen-rb/namespaced_spec_namespace/thrift_namespaced_spec_constants.rb
301
- - spec/gen-rb/namespaced_spec_namespace/thrift_namespaced_spec_types.rb
302
- - spec/gen-rb/nonblocking_service.rb
303
- - spec/gen-rb/other_namespace/referenced_constants.rb
304
- - spec/gen-rb/other_namespace/referenced_types.rb
305
- - spec/gen-rb/thrift_spec_constants.rb
306
- - spec/gen-rb/thrift_spec_types.rb
307
432
  - spec/http_client_spec.rb
308
433
  - spec/json_protocol_spec.rb
309
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
310
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
311
442
  - spec/processor_spec.rb
312
443
  - spec/rack_application_spec.rb
313
444
  - spec/serializer_spec.rb
@@ -316,9 +447,14 @@ files:
316
447
  - spec/socket_spec.rb
317
448
  - spec/socket_spec_shared.rb
318
449
  - spec/spec_helper.rb
450
+ - spec/ssl_server_socket_spec.rb
451
+ - spec/ssl_socket_spec.rb
452
+ - spec/streaming_spec.rb
319
453
  - spec/struct_nested_containers_spec.rb
320
454
  - spec/struct_spec.rb
321
455
  - spec/thin_http_server_spec.rb
456
+ - spec/thrift_spec_constants.rb
457
+ - spec/thrift_spec_types.rb
322
458
  - spec/types/known/any_spec.rb
323
459
  - spec/types/known/duration_spec.rb
324
460
  - spec/types/known/timestamp_spec.rb
@@ -335,9 +471,8 @@ files:
335
471
  - test/debug_proto/gen-rb/srv.rb
336
472
  homepage: http://thrift.apache.org
337
473
  licenses:
338
- - Apache 2.0
474
+ - Apache-2.0
339
475
  metadata: {}
340
- post_install_message:
341
476
  rdoc_options:
342
477
  - "--line-numbers"
343
478
  - "--inline-source"
@@ -359,8 +494,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
359
494
  - !ruby/object:Gem::Version
360
495
  version: '0'
361
496
  requirements: []
362
- rubygems_version: 3.5.3
363
- signing_key:
497
+ rubygems_version: 3.6.2
364
498
  specification_version: 4
365
499
  summary: Ruby bindings for Apache Thrift
366
500
  test_files:
@@ -376,6 +510,9 @@ test_files:
376
510
  - spec/Referenced.thrift
377
511
  - spec/ThriftNamespacedSpec.thrift
378
512
  - spec/ThriftSpec.thrift
513
+ - spec/base/base_service.rb
514
+ - spec/base/base_service_constants.rb
515
+ - spec/base/base_service_types.rb
379
516
  - spec/base_protocol_spec.rb
380
517
  - spec/base_transport_spec.rb
381
518
  - spec/binary_protocol_accelerated_spec.rb
@@ -385,30 +522,25 @@ test_files:
385
522
  - spec/client_spec.rb
386
523
  - spec/compact_protocol_spec.rb
387
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
388
528
  - spec/flat_spec.rb
389
- - spec/gen-rb/base/base_service.rb
390
- - spec/gen-rb/base/base_service_constants.rb
391
- - spec/gen-rb/base/base_service_types.rb
392
- - spec/gen-rb/extended/extended_service.rb
393
- - spec/gen-rb/extended/extended_service_constants.rb
394
- - spec/gen-rb/extended/extended_service_types.rb
395
529
  - spec/gen-rb/flat/namespaced_nonblocking_service.rb
396
530
  - spec/gen-rb/flat/referenced_constants.rb
397
531
  - spec/gen-rb/flat/referenced_types.rb
398
532
  - spec/gen-rb/flat/thrift_namespaced_spec_constants.rb
399
533
  - spec/gen-rb/flat/thrift_namespaced_spec_types.rb
400
- - spec/gen-rb/namespaced_spec_namespace/namespaced_nonblocking_service.rb
401
- - spec/gen-rb/namespaced_spec_namespace/thrift_namespaced_spec_constants.rb
402
- - spec/gen-rb/namespaced_spec_namespace/thrift_namespaced_spec_types.rb
403
- - spec/gen-rb/nonblocking_service.rb
404
- - spec/gen-rb/other_namespace/referenced_constants.rb
405
- - spec/gen-rb/other_namespace/referenced_types.rb
406
- - spec/gen-rb/thrift_spec_constants.rb
407
- - spec/gen-rb/thrift_spec_types.rb
408
534
  - spec/http_client_spec.rb
409
535
  - spec/json_protocol_spec.rb
410
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
411
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
412
544
  - spec/processor_spec.rb
413
545
  - spec/rack_application_spec.rb
414
546
  - spec/serializer_spec.rb
@@ -417,9 +549,14 @@ test_files:
417
549
  - spec/socket_spec.rb
418
550
  - spec/socket_spec_shared.rb
419
551
  - spec/spec_helper.rb
552
+ - spec/ssl_server_socket_spec.rb
553
+ - spec/ssl_socket_spec.rb
554
+ - spec/streaming_spec.rb
420
555
  - spec/struct_nested_containers_spec.rb
421
556
  - spec/struct_spec.rb
422
557
  - spec/thin_http_server_spec.rb
558
+ - spec/thrift_spec_constants.rb
559
+ - spec/thrift_spec_types.rb
423
560
  - spec/types/known/any_spec.rb
424
561
  - spec/types/known/duration_spec.rb
425
562
  - spec/types/known/timestamp_spec.rb
@@ -429,9 +566,9 @@ test_files:
429
566
  - spec/unix_socket_spec.rb
430
567
  - benchmark/Benchmark.thrift
431
568
  - benchmark/benchmark.rb
569
+ - benchmark/benchmark_constants.rb
570
+ - benchmark/benchmark_service.rb
571
+ - benchmark/benchmark_types.rb
432
572
  - benchmark/client.rb
433
- - benchmark/gen-rb/benchmark_constants.rb
434
- - benchmark/gen-rb/benchmark_service.rb
435
- - benchmark/gen-rb/benchmark_types.rb
436
573
  - benchmark/server.rb
437
574
  - benchmark/thin_server.rb