upfluence-thrift 1.0.1

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