thrift 0.19.0 → 0.20.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. checksums.yaml +4 -4
  2. metadata +69 -69
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9cfaafd284113c7fe3d10cd24b8a7010839b2b92c8d2ed3758d4e46394295741
4
- data.tar.gz: 2e5ebf18ad9aeea00b85c72371f190972b2b91dd7b1a5957be6e7a1cd9ab10bd
3
+ metadata.gz: 3eb9c3426244976ebdcb047b32fed76aef36e4baf8350e2a78f1dc0f9aee5c41
4
+ data.tar.gz: 869bad95ea16bd26756da4489781e5bda821ada062f8a51d3b9ff2d5f6a60aa4
5
5
  SHA512:
6
- metadata.gz: 13f02392505633c6da3b9ab45a034b0e664b4f9c31dcc230d5d9b70cd10a3385dd4c3a1ea501c0267aa15d4cbb569df75a38e949885026d5e4e9d1f2b8a67564
7
- data.tar.gz: 2718db108acb7a525592db21e909011e0e67ab25290729d7f16be6a5855588dbe183c08ed632b45bcbe66110cd31abd52a5ecf8e6e735dc9b5ddaf496db0aab1
6
+ metadata.gz: 00ba40e87f27e68ef4402b4d994e33d20030dfcc2e021c2d922ec76bb7cdb30e1fafba4866b1d502570c4288cf9cafb6ae2f5975e374408d963923493e717293
7
+ data.tar.gz: 0ed16ee3ba0f6f6401c1822f4b645fb6882a793afaa0c257282b0e6715c6150b992f238776d47742b8404a19ae707e12876082f75030ee9f487335dee9aca15e
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thrift
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.19.0
4
+ version: 0.20.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Apache Thrift Developers
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-02 00:00:00.000000000 Z
11
+ date: 2024-03-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -158,65 +158,65 @@ extensions:
158
158
  - ext/extconf.rb
159
159
  extra_rdoc_files:
160
160
  - README.md
161
- - ext/thrift_native.c
161
+ - ext/binary_protocol_accelerated.c
162
162
  - ext/bytes.c
163
+ - ext/compact_protocol.c
164
+ - ext/memory_buffer.c
163
165
  - ext/protocol.c
164
166
  - ext/strlcpy.c
165
- - ext/memory_buffer.c
166
- - ext/binary_protocol_accelerated.c
167
167
  - ext/struct.c
168
- - ext/compact_protocol.c
168
+ - ext/thrift_native.c
169
+ - ext/binary_protocol_accelerated.h
170
+ - ext/bytes.h
171
+ - ext/compact_protocol.h
169
172
  - ext/constants.h
170
173
  - ext/macros.h
171
- - ext/strlcpy.h
172
- - ext/bytes.h
173
174
  - ext/memory_buffer.h
174
175
  - ext/protocol.h
175
- - ext/binary_protocol_accelerated.h
176
+ - ext/strlcpy.h
176
177
  - ext/struct.h
177
- - ext/compact_protocol.h
178
178
  - ext/extconf.rb
179
- - lib/thrift/struct_union.rb
180
- - lib/thrift/struct.rb
179
+ - lib/thrift/bytes.rb
180
+ - lib/thrift/client.rb
181
+ - lib/thrift/core_ext/fixnum.rb
182
+ - lib/thrift/core_ext.rb
183
+ - lib/thrift/exceptions.rb
184
+ - lib/thrift/multiplexed_processor.rb
181
185
  - lib/thrift/processor.rb
186
+ - lib/thrift/protocol/base_protocol.rb
187
+ - lib/thrift/protocol/binary_protocol.rb
188
+ - lib/thrift/protocol/binary_protocol_accelerated.rb
189
+ - lib/thrift/protocol/compact_protocol.rb
182
190
  - lib/thrift/protocol/json_protocol.rb
183
191
  - lib/thrift/protocol/multiplexed_protocol.rb
184
192
  - lib/thrift/protocol/protocol_decorator.rb
185
- - lib/thrift/protocol/compact_protocol.rb
186
- - lib/thrift/protocol/binary_protocol_accelerated.rb
187
- - lib/thrift/protocol/binary_protocol.rb
188
- - lib/thrift/protocol/base_protocol.rb
189
- - lib/thrift/types.rb
190
- - lib/thrift/thrift_native.rb
191
- - lib/thrift/union.rb
192
- - lib/thrift/bytes.rb
193
- - lib/thrift/client.rb
194
- - lib/thrift/multiplexed_processor.rb
195
- - lib/thrift/server/thin_http_server.rb
193
+ - lib/thrift/serializer/deserializer.rb
194
+ - lib/thrift/serializer/serializer.rb
195
+ - lib/thrift/server/base_server.rb
196
+ - lib/thrift/server/mongrel_http_server.rb
197
+ - lib/thrift/server/nonblocking_server.rb
196
198
  - lib/thrift/server/simple_server.rb
199
+ - lib/thrift/server/thin_http_server.rb
197
200
  - lib/thrift/server/thread_pool_server.rb
198
201
  - lib/thrift/server/threaded_server.rb
199
- - lib/thrift/server/mongrel_http_server.rb
200
- - lib/thrift/server/base_server.rb
201
- - lib/thrift/server/nonblocking_server.rb
202
- - lib/thrift/transport/ssl_socket.rb
203
- - lib/thrift/transport/memory_buffer_transport.rb
202
+ - lib/thrift/struct.rb
203
+ - lib/thrift/struct_union.rb
204
+ - lib/thrift/thrift_native.rb
205
+ - lib/thrift/transport/base_server_transport.rb
206
+ - lib/thrift/transport/base_transport.rb
204
207
  - lib/thrift/transport/buffered_transport.rb
205
- - lib/thrift/transport/socket.rb
206
208
  - lib/thrift/transport/framed_transport.rb
207
209
  - lib/thrift/transport/http_client_transport.rb
208
- - lib/thrift/transport/base_server_transport.rb
209
- - lib/thrift/transport/ssl_server_socket.rb
210
- - lib/thrift/transport/unix_server_socket.rb
211
- - lib/thrift/transport/base_transport.rb
212
210
  - lib/thrift/transport/io_stream_transport.rb
211
+ - lib/thrift/transport/memory_buffer_transport.rb
213
212
  - lib/thrift/transport/server_socket.rb
213
+ - lib/thrift/transport/socket.rb
214
+ - lib/thrift/transport/ssl_server_socket.rb
215
+ - lib/thrift/transport/ssl_socket.rb
216
+ - lib/thrift/transport/unix_server_socket.rb
214
217
  - lib/thrift/transport/unix_socket.rb
215
- - lib/thrift/exceptions.rb
216
- - lib/thrift/core_ext.rb
217
- - lib/thrift/core_ext/fixnum.rb
218
- - lib/thrift/serializer/deserializer.rb
219
- - lib/thrift/serializer/serializer.rb
218
+ - lib/thrift/types.rb
219
+ - lib/thrift/union.rb
220
220
  - lib/thrift.rb
221
221
  files:
222
222
  - README.md
@@ -323,7 +323,7 @@ homepage: http://thrift.apache.org
323
323
  licenses:
324
324
  - Apache-2.0
325
325
  metadata: {}
326
- post_install_message:
326
+ post_install_message:
327
327
  rdoc_options:
328
328
  - "--line-numbers"
329
329
  - "--inline-source"
@@ -345,47 +345,47 @@ required_rubygems_version: !ruby/object:Gem::Requirement
345
345
  - !ruby/object:Gem::Version
346
346
  version: '0'
347
347
  requirements: []
348
- rubygems_version: 3.2.5
349
- signing_key:
348
+ rubygems_version: 3.3.15
349
+ signing_key:
350
350
  specification_version: 4
351
351
  summary: Ruby bindings for Apache Thrift
352
352
  test_files:
353
- - spec/types_spec.rb
354
- - spec/union_spec.rb
353
+ - spec/BaseService.thrift
354
+ - spec/ExtendedService.thrift
355
+ - spec/Referenced.thrift
356
+ - spec/ThriftNamespacedSpec.thrift
355
357
  - spec/ThriftSpec.thrift
356
- - spec/spec_helper.rb
358
+ - spec/base_protocol_spec.rb
359
+ - spec/base_transport_spec.rb
357
360
  - spec/binary_protocol_accelerated_spec.rb
358
- - spec/ssl_socket_spec.rb
359
- - spec/http_client_spec.rb
360
- - spec/flat_spec.rb
361
- - spec/server_socket_spec.rb
362
- - spec/bytes_spec.rb
363
361
  - spec/binary_protocol_spec.rb
364
- - spec/socket_spec.rb
365
- - spec/struct_spec.rb
366
- - spec/exception_spec.rb
367
- - spec/thin_http_server_spec.rb
368
- - spec/BaseService.thrift
362
+ - spec/binary_protocol_spec_shared.rb
363
+ - spec/bytes_spec.rb
364
+ - spec/client_spec.rb
369
365
  - spec/compact_protocol_spec.rb
366
+ - spec/exception_spec.rb
367
+ - spec/flat_spec.rb
368
+ - spec/http_client_spec.rb
369
+ - spec/json_protocol_spec.rb
370
370
  - spec/namespaced_spec.rb
371
+ - spec/nonblocking_server_spec.rb
371
372
  - spec/processor_spec.rb
373
+ - spec/serializer_spec.rb
374
+ - spec/server_socket_spec.rb
375
+ - spec/server_spec.rb
376
+ - spec/socket_spec.rb
377
+ - spec/socket_spec_shared.rb
378
+ - spec/spec_helper.rb
372
379
  - spec/ssl_server_socket_spec.rb
373
- - spec/ExtendedService.thrift
374
- - spec/binary_protocol_spec_shared.rb
380
+ - spec/ssl_socket_spec.rb
375
381
  - spec/struct_nested_containers_spec.rb
376
- - spec/base_protocol_spec.rb
377
- - spec/serializer_spec.rb
378
- - spec/json_protocol_spec.rb
379
- - spec/base_transport_spec.rb
380
- - spec/nonblocking_server_spec.rb
381
- - spec/Referenced.thrift
382
+ - spec/struct_spec.rb
383
+ - spec/thin_http_server_spec.rb
384
+ - spec/types_spec.rb
385
+ - spec/union_spec.rb
382
386
  - spec/unix_socket_spec.rb
383
- - spec/socket_spec_shared.rb
384
- - spec/ThriftNamespacedSpec.thrift
385
- - spec/server_spec.rb
386
- - spec/client_spec.rb
387
+ - benchmark/Benchmark.thrift
387
388
  - benchmark/benchmark.rb
389
+ - benchmark/client.rb
388
390
  - benchmark/server.rb
389
391
  - benchmark/thin_server.rb
390
- - benchmark/client.rb
391
- - benchmark/Benchmark.thrift