thrift 0.9.1 → 0.13.0

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