thrift 0.9.2.0 → 0.15.0

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 (65) hide show
  1. checksums.yaml +7 -0
  2. data/ext/binary_protocol_accelerated.c +12 -12
  3. data/ext/compact_protocol.c +1 -0
  4. data/ext/struct.c +14 -1
  5. data/ext/thrift_native.c +17 -0
  6. data/lib/thrift/multiplexed_processor.rb +76 -0
  7. data/lib/thrift/processor.rb +24 -6
  8. data/lib/thrift/protocol/base_protocol.rb +11 -3
  9. data/lib/thrift/protocol/binary_protocol.rb +8 -1
  10. data/lib/thrift/protocol/binary_protocol_accelerated.rb +8 -0
  11. data/lib/thrift/protocol/compact_protocol.rb +8 -0
  12. data/lib/thrift/protocol/json_protocol.rb +21 -4
  13. data/lib/thrift/protocol/multiplexed_protocol.rb +44 -0
  14. data/lib/thrift/protocol/protocol_decorator.rb +194 -0
  15. data/lib/thrift/server/base_server.rb +8 -2
  16. data/lib/thrift/server/simple_server.rb +5 -1
  17. data/lib/thrift/server/thread_pool_server.rb +5 -1
  18. data/lib/thrift/server/threaded_server.rb +5 -1
  19. data/lib/thrift/transport/base_server_transport.rb +1 -1
  20. data/lib/thrift/transport/base_transport.rb +8 -0
  21. data/lib/thrift/transport/buffered_transport.rb +9 -1
  22. data/lib/thrift/transport/framed_transport.rb +9 -1
  23. data/lib/thrift/transport/http_client_transport.rb +7 -0
  24. data/lib/thrift/transport/io_stream_transport.rb +4 -1
  25. data/lib/thrift/transport/memory_buffer_transport.rb +4 -0
  26. data/lib/thrift/transport/server_socket.rb +6 -1
  27. data/lib/thrift/transport/socket.rb +21 -17
  28. data/lib/thrift/transport/ssl_server_socket.rb +41 -0
  29. data/lib/thrift/transport/ssl_socket.rb +51 -0
  30. data/lib/thrift/transport/unix_server_socket.rb +5 -1
  31. data/lib/thrift/transport/unix_socket.rb +5 -1
  32. data/lib/thrift/union.rb +3 -6
  33. data/lib/thrift.rb +8 -4
  34. data/spec/BaseService.thrift +27 -0
  35. data/spec/ExtendedService.thrift +25 -0
  36. data/spec/base_protocol_spec.rb +79 -71
  37. data/spec/base_transport_spec.rb +155 -117
  38. data/spec/binary_protocol_accelerated_spec.rb +6 -2
  39. data/spec/binary_protocol_spec.rb +16 -8
  40. data/spec/binary_protocol_spec_shared.rb +75 -72
  41. data/spec/bytes_spec.rb +38 -38
  42. data/spec/client_spec.rb +41 -42
  43. data/spec/compact_protocol_spec.rb +32 -17
  44. data/spec/exception_spec.rb +54 -54
  45. data/spec/flat_spec.rb +62 -0
  46. data/spec/http_client_spec.rb +74 -33
  47. data/spec/json_protocol_spec.rb +170 -131
  48. data/spec/namespaced_spec.rb +10 -5
  49. data/spec/nonblocking_server_spec.rb +16 -16
  50. data/spec/processor_spec.rb +26 -26
  51. data/spec/serializer_spec.rb +20 -20
  52. data/spec/server_socket_spec.rb +27 -22
  53. data/spec/server_spec.rb +91 -51
  54. data/spec/socket_spec.rb +23 -16
  55. data/spec/socket_spec_shared.rb +31 -31
  56. data/spec/spec_helper.rb +9 -1
  57. data/spec/ssl_server_socket_spec.rb +34 -0
  58. data/spec/ssl_socket_spec.rb +78 -0
  59. data/spec/struct_nested_containers_spec.rb +24 -24
  60. data/spec/struct_spec.rb +120 -120
  61. data/spec/thin_http_server_spec.rb +18 -18
  62. data/spec/types_spec.rb +56 -53
  63. data/spec/union_spec.rb +51 -40
  64. data/spec/unix_socket_spec.rb +43 -34
  65. metadata +205 -143
metadata CHANGED
@@ -1,112 +1,155 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thrift
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.2.0
5
- prerelease:
4
+ version: 0.15.0
6
5
  platform: ruby
7
6
  authors:
8
- - Thrift Developers
9
- autorequire:
7
+ - Apache Thrift Developers
8
+ autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2014-11-05 00:00:00.000000000 Z
11
+ date: 2021-09-11 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
- name: rspec
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '1.11'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '1.11'
27
+ - !ruby/object:Gem::Dependency
28
+ name: pry
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 0.11.3
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 0.11.3
41
+ - !ruby/object:Gem::Dependency
42
+ name: pry-byebug
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.6'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.6'
55
+ - !ruby/object:Gem::Dependency
56
+ name: pry-stack_explorer
16
57
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
58
  requirements:
19
- - - ~>
59
+ - - "~>"
20
60
  - !ruby/object:Gem::Version
21
- version: 2.10.0
61
+ version: 0.4.9.2
22
62
  type: :development
23
63
  prerelease: false
24
64
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
65
  requirements:
27
- - - ~>
66
+ - - "~>"
28
67
  - !ruby/object:Gem::Version
29
- version: 2.10.0
68
+ version: 0.4.9.2
30
69
  - !ruby/object:Gem::Dependency
31
70
  name: rack
32
71
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
72
  requirements:
35
- - - ~>
73
+ - - '='
36
74
  - !ruby/object:Gem::Version
37
- version: 1.5.2
75
+ version: 2.0.8
38
76
  type: :development
39
77
  prerelease: false
40
78
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
79
  requirements:
43
- - - ~>
80
+ - - '='
44
81
  - !ruby/object:Gem::Version
45
- version: 1.5.2
82
+ version: 2.0.8
46
83
  - !ruby/object:Gem::Dependency
47
84
  name: rack-test
48
85
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
86
  requirements:
51
- - - ~>
87
+ - - "~>"
52
88
  - !ruby/object:Gem::Version
53
- version: 0.6.2
89
+ version: 0.8.3
54
90
  type: :development
55
91
  prerelease: false
56
92
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
93
  requirements:
59
- - - ~>
94
+ - - "~>"
60
95
  - !ruby/object:Gem::Version
61
- version: 0.6.2
96
+ version: 0.8.3
62
97
  - !ruby/object:Gem::Dependency
63
- name: thin
98
+ name: rake
64
99
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
100
  requirements:
67
- - - ~>
101
+ - - "~>"
68
102
  - !ruby/object:Gem::Version
69
- version: 1.5.0
103
+ version: '12.3'
70
104
  type: :development
71
105
  prerelease: false
72
106
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
107
  requirements:
75
- - - ~>
108
+ - - "~>"
76
109
  - !ruby/object:Gem::Version
77
- version: 1.5.0
110
+ version: '12.3'
78
111
  - !ruby/object:Gem::Dependency
79
- name: bundler
112
+ name: rspec
80
113
  requirement: !ruby/object:Gem::Requirement
81
- none: false
82
114
  requirements:
83
- - - ! '>='
115
+ - - "~>"
84
116
  - !ruby/object:Gem::Version
85
- version: '0'
117
+ version: '3.7'
86
118
  type: :development
87
119
  prerelease: false
88
120
  version_requirements: !ruby/object:Gem::Requirement
89
- none: false
90
121
  requirements:
91
- - - ! '>='
122
+ - - "~>"
92
123
  - !ruby/object:Gem::Version
93
- version: '0'
124
+ version: '3.7'
94
125
  - !ruby/object:Gem::Dependency
95
- name: rake
126
+ name: srv
96
127
  requirement: !ruby/object:Gem::Requirement
97
- none: false
98
128
  requirements:
99
- - - ! '>='
129
+ - - "~>"
100
130
  - !ruby/object:Gem::Version
101
- version: '0'
131
+ version: '1.0'
102
132
  type: :development
103
133
  prerelease: false
104
134
  version_requirements: !ruby/object:Gem::Requirement
105
- none: false
106
135
  requirements:
107
- - - ! '>='
136
+ - - "~>"
108
137
  - !ruby/object:Gem::Version
109
- version: '0'
138
+ version: '1.0'
139
+ - !ruby/object:Gem::Dependency
140
+ name: thin
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - "~>"
144
+ - !ruby/object:Gem::Version
145
+ version: '1.7'
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - "~>"
151
+ - !ruby/object:Gem::Version
152
+ version: '1.7'
110
153
  description: Ruby bindings for the Apache Thrift RPC system
111
154
  email:
112
155
  - dev@thrift.apache.org
@@ -115,73 +158,106 @@ extensions:
115
158
  - ext/extconf.rb
116
159
  extra_rdoc_files:
117
160
  - README.md
118
- - ext/binary_protocol_accelerated.c
161
+ - ext/thrift_native.c
119
162
  - ext/bytes.c
120
- - ext/compact_protocol.c
121
- - ext/memory_buffer.c
122
163
  - ext/protocol.c
123
164
  - ext/strlcpy.c
165
+ - ext/memory_buffer.c
166
+ - ext/binary_protocol_accelerated.c
124
167
  - ext/struct.c
125
- - ext/thrift_native.c
126
- - ext/binary_protocol_accelerated.h
127
- - ext/bytes.h
128
- - ext/compact_protocol.h
168
+ - ext/compact_protocol.c
129
169
  - ext/constants.h
130
170
  - ext/macros.h
171
+ - ext/strlcpy.h
172
+ - ext/bytes.h
131
173
  - ext/memory_buffer.h
132
174
  - ext/protocol.h
133
- - ext/strlcpy.h
175
+ - ext/binary_protocol_accelerated.h
134
176
  - ext/struct.h
177
+ - ext/compact_protocol.h
135
178
  - ext/extconf.rb
136
- - lib/thrift/bytes.rb
137
- - lib/thrift/client.rb
138
- - lib/thrift/core_ext/fixnum.rb
139
- - lib/thrift/core_ext.rb
140
- - lib/thrift/exceptions.rb
179
+ - lib/thrift/struct_union.rb
180
+ - lib/thrift/struct.rb
141
181
  - lib/thrift/processor.rb
142
- - lib/thrift/protocol/base_protocol.rb
143
- - lib/thrift/protocol/binary_protocol.rb
144
- - lib/thrift/protocol/binary_protocol_accelerated.rb
145
- - lib/thrift/protocol/compact_protocol.rb
146
182
  - lib/thrift/protocol/json_protocol.rb
147
- - lib/thrift/serializer/deserializer.rb
148
- - lib/thrift/serializer/serializer.rb
149
- - lib/thrift/server/base_server.rb
150
- - lib/thrift/server/mongrel_http_server.rb
151
- - lib/thrift/server/nonblocking_server.rb
152
- - lib/thrift/server/simple_server.rb
183
+ - lib/thrift/protocol/multiplexed_protocol.rb
184
+ - 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
153
195
  - lib/thrift/server/thin_http_server.rb
196
+ - lib/thrift/server/simple_server.rb
154
197
  - lib/thrift/server/thread_pool_server.rb
155
198
  - lib/thrift/server/threaded_server.rb
156
- - lib/thrift/struct.rb
157
- - lib/thrift/struct_union.rb
158
- - lib/thrift/thrift_native.rb
159
- - lib/thrift/transport/base_server_transport.rb
160
- - lib/thrift/transport/base_transport.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
161
204
  - lib/thrift/transport/buffered_transport.rb
205
+ - lib/thrift/transport/socket.rb
162
206
  - lib/thrift/transport/framed_transport.rb
163
207
  - 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
164
212
  - lib/thrift/transport/io_stream_transport.rb
165
- - lib/thrift/transport/memory_buffer_transport.rb
166
213
  - lib/thrift/transport/server_socket.rb
167
- - lib/thrift/transport/socket.rb
168
- - lib/thrift/transport/unix_server_socket.rb
169
214
  - lib/thrift/transport/unix_socket.rb
170
- - lib/thrift/types.rb
171
- - lib/thrift/union.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
172
220
  - lib/thrift.rb
173
221
  files:
222
+ - README.md
223
+ - benchmark/Benchmark.thrift
224
+ - benchmark/benchmark.rb
225
+ - benchmark/client.rb
226
+ - benchmark/server.rb
227
+ - benchmark/thin_server.rb
228
+ - ext/binary_protocol_accelerated.c
229
+ - ext/binary_protocol_accelerated.h
230
+ - ext/bytes.c
231
+ - ext/bytes.h
232
+ - ext/compact_protocol.c
233
+ - ext/compact_protocol.h
234
+ - ext/constants.h
235
+ - ext/extconf.rb
236
+ - ext/macros.h
237
+ - ext/memory_buffer.c
238
+ - ext/memory_buffer.h
239
+ - ext/protocol.c
240
+ - ext/protocol.h
241
+ - ext/strlcpy.c
242
+ - ext/strlcpy.h
243
+ - ext/struct.c
244
+ - ext/struct.h
245
+ - ext/thrift_native.c
246
+ - lib/thrift.rb
174
247
  - lib/thrift/bytes.rb
175
248
  - lib/thrift/client.rb
176
- - lib/thrift/core_ext/fixnum.rb
177
249
  - lib/thrift/core_ext.rb
250
+ - lib/thrift/core_ext/fixnum.rb
178
251
  - lib/thrift/exceptions.rb
252
+ - lib/thrift/multiplexed_processor.rb
179
253
  - lib/thrift/processor.rb
180
254
  - lib/thrift/protocol/base_protocol.rb
181
255
  - lib/thrift/protocol/binary_protocol.rb
182
256
  - lib/thrift/protocol/binary_protocol_accelerated.rb
183
257
  - lib/thrift/protocol/compact_protocol.rb
184
258
  - lib/thrift/protocol/json_protocol.rb
259
+ - lib/thrift/protocol/multiplexed_protocol.rb
260
+ - lib/thrift/protocol/protocol_decorator.rb
185
261
  - lib/thrift/serializer/deserializer.rb
186
262
  - lib/thrift/serializer/serializer.rb
187
263
  - lib/thrift/server/base_server.rb
@@ -203,11 +279,17 @@ files:
203
279
  - lib/thrift/transport/memory_buffer_transport.rb
204
280
  - lib/thrift/transport/server_socket.rb
205
281
  - lib/thrift/transport/socket.rb
282
+ - lib/thrift/transport/ssl_server_socket.rb
283
+ - lib/thrift/transport/ssl_socket.rb
206
284
  - lib/thrift/transport/unix_server_socket.rb
207
285
  - lib/thrift/transport/unix_socket.rb
208
286
  - lib/thrift/types.rb
209
287
  - lib/thrift/union.rb
210
- - lib/thrift.rb
288
+ - spec/BaseService.thrift
289
+ - spec/ExtendedService.thrift
290
+ - spec/Referenced.thrift
291
+ - spec/ThriftNamespacedSpec.thrift
292
+ - spec/ThriftSpec.thrift
211
293
  - spec/base_protocol_spec.rb
212
294
  - spec/base_transport_spec.rb
213
295
  - spec/binary_protocol_accelerated_spec.rb
@@ -217,114 +299,94 @@ files:
217
299
  - spec/client_spec.rb
218
300
  - spec/compact_protocol_spec.rb
219
301
  - spec/exception_spec.rb
302
+ - spec/flat_spec.rb
220
303
  - spec/http_client_spec.rb
221
304
  - spec/json_protocol_spec.rb
222
305
  - spec/namespaced_spec.rb
223
306
  - spec/nonblocking_server_spec.rb
224
307
  - spec/processor_spec.rb
225
- - spec/Referenced.thrift
226
308
  - spec/serializer_spec.rb
227
309
  - spec/server_socket_spec.rb
228
310
  - spec/server_spec.rb
229
311
  - spec/socket_spec.rb
230
312
  - spec/socket_spec_shared.rb
231
313
  - spec/spec_helper.rb
314
+ - spec/ssl_server_socket_spec.rb
315
+ - spec/ssl_socket_spec.rb
232
316
  - spec/struct_nested_containers_spec.rb
233
317
  - spec/struct_spec.rb
234
318
  - spec/thin_http_server_spec.rb
235
- - spec/ThriftNamespacedSpec.thrift
236
- - spec/ThriftSpec.thrift
237
319
  - spec/types_spec.rb
238
320
  - spec/union_spec.rb
239
321
  - spec/unix_socket_spec.rb
240
- - README.md
241
- - ext/binary_protocol_accelerated.c
242
- - ext/bytes.c
243
- - ext/compact_protocol.c
244
- - ext/memory_buffer.c
245
- - ext/protocol.c
246
- - ext/strlcpy.c
247
- - ext/struct.c
248
- - ext/thrift_native.c
249
- - ext/binary_protocol_accelerated.h
250
- - ext/bytes.h
251
- - ext/compact_protocol.h
252
- - ext/constants.h
253
- - ext/macros.h
254
- - ext/memory_buffer.h
255
- - ext/protocol.h
256
- - ext/strlcpy.h
257
- - ext/struct.h
258
- - ext/extconf.rb
259
- - benchmark/benchmark.rb
260
- - benchmark/Benchmark.thrift
261
- - benchmark/client.rb
262
- - benchmark/server.rb
263
- - benchmark/thin_server.rb
264
322
  homepage: http://thrift.apache.org
265
323
  licenses:
266
- - Apache 2.0
267
- post_install_message:
324
+ - Apache-2.0
325
+ metadata: {}
326
+ post_install_message:
268
327
  rdoc_options:
269
- - --line-numbers
270
- - --inline-source
271
- - --title
328
+ - "--line-numbers"
329
+ - "--inline-source"
330
+ - "--title"
272
331
  - Thrift
273
- - --main
332
+ - "--main"
274
333
  - README
275
334
  require_paths:
276
335
  - lib
277
336
  - ext
278
337
  required_ruby_version: !ruby/object:Gem::Requirement
279
- none: false
280
338
  requirements:
281
- - - ! '>='
339
+ - - ">="
282
340
  - !ruby/object:Gem::Version
283
341
  version: '0'
284
342
  required_rubygems_version: !ruby/object:Gem::Requirement
285
- none: false
286
343
  requirements:
287
- - - ! '>='
344
+ - - ">="
288
345
  - !ruby/object:Gem::Version
289
346
  version: '0'
290
347
  requirements: []
291
348
  rubyforge_project: thrift
292
- rubygems_version: 1.8.23
293
- signing_key:
294
- specification_version: 3
349
+ rubygems_version: 2.7.6.2
350
+ signing_key:
351
+ specification_version: 4
295
352
  summary: Ruby bindings for Apache Thrift
296
353
  test_files:
297
- - spec/base_protocol_spec.rb
298
- - spec/base_transport_spec.rb
354
+ - spec/types_spec.rb
355
+ - spec/union_spec.rb
356
+ - spec/ThriftSpec.thrift
357
+ - spec/spec_helper.rb
299
358
  - spec/binary_protocol_accelerated_spec.rb
300
- - spec/binary_protocol_spec.rb
301
- - spec/binary_protocol_spec_shared.rb
359
+ - spec/ssl_socket_spec.rb
360
+ - spec/http_client_spec.rb
361
+ - spec/flat_spec.rb
362
+ - spec/server_socket_spec.rb
302
363
  - spec/bytes_spec.rb
303
- - spec/client_spec.rb
304
- - spec/compact_protocol_spec.rb
364
+ - spec/binary_protocol_spec.rb
365
+ - spec/socket_spec.rb
366
+ - spec/struct_spec.rb
305
367
  - spec/exception_spec.rb
306
- - spec/http_client_spec.rb
307
- - spec/json_protocol_spec.rb
368
+ - spec/thin_http_server_spec.rb
369
+ - spec/BaseService.thrift
370
+ - spec/compact_protocol_spec.rb
308
371
  - spec/namespaced_spec.rb
309
- - spec/nonblocking_server_spec.rb
310
372
  - spec/processor_spec.rb
311
- - spec/Referenced.thrift
373
+ - spec/ssl_server_socket_spec.rb
374
+ - spec/ExtendedService.thrift
375
+ - spec/binary_protocol_spec_shared.rb
376
+ - spec/struct_nested_containers_spec.rb
377
+ - spec/base_protocol_spec.rb
312
378
  - spec/serializer_spec.rb
313
- - spec/server_socket_spec.rb
314
- - spec/server_spec.rb
315
- - spec/socket_spec.rb
379
+ - spec/json_protocol_spec.rb
380
+ - spec/base_transport_spec.rb
381
+ - spec/nonblocking_server_spec.rb
382
+ - spec/Referenced.thrift
383
+ - spec/unix_socket_spec.rb
316
384
  - spec/socket_spec_shared.rb
317
- - spec/spec_helper.rb
318
- - spec/struct_nested_containers_spec.rb
319
- - spec/struct_spec.rb
320
- - spec/thin_http_server_spec.rb
321
385
  - spec/ThriftNamespacedSpec.thrift
322
- - spec/ThriftSpec.thrift
323
- - spec/types_spec.rb
324
- - spec/union_spec.rb
325
- - spec/unix_socket_spec.rb
386
+ - spec/server_spec.rb
387
+ - spec/client_spec.rb
326
388
  - benchmark/benchmark.rb
327
- - benchmark/Benchmark.thrift
328
- - benchmark/client.rb
329
389
  - benchmark/server.rb
330
390
  - benchmark/thin_server.rb
391
+ - benchmark/client.rb
392
+ - benchmark/Benchmark.thrift