thrift 0.2.0 → 0.2.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,11 @@
1
+ #
2
+ # Autogenerated by Thrift
3
+ #
4
+ # DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
5
+ #
6
+
7
+ require 'thrift/protocol'
8
+ require File.dirname(__FILE__) + '/ThriftSpec_types'
9
+
10
+ module SpecNamespace
11
+ end
@@ -0,0 +1,134 @@
1
+ #
2
+ # Autogenerated by Thrift
3
+ #
4
+ # DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
5
+ #
6
+
7
+ require 'thrift/protocol'
8
+
9
+ module SpecNamespace
10
+ class Hello
11
+ include ::Thrift::Struct
12
+ GREETING = 1
13
+
14
+ Thrift::Struct.field_accessor self, :greeting
15
+ FIELDS = {
16
+ GREETING => {:type => Thrift::Types::STRING, :name => 'greeting', :default => %q"hello world"}
17
+ }
18
+
19
+ def struct_fields; FIELDS; end
20
+
21
+ def validate
22
+ end
23
+
24
+ end
25
+
26
+ class Foo
27
+ include ::Thrift::Struct
28
+ SIMPLE = 1
29
+ WORDS = 2
30
+ HELLO = 3
31
+ INTS = 4
32
+ COMPLEX = 5
33
+ SHORTS = 6
34
+ OPT_STRING = 7
35
+
36
+ Thrift::Struct.field_accessor self, :simple, :words, :hello, :ints, :complex, :shorts, :opt_string
37
+ FIELDS = {
38
+ SIMPLE => {:type => Thrift::Types::I32, :name => 'simple', :default => 53},
39
+ WORDS => {:type => Thrift::Types::STRING, :name => 'words', :default => %q"words"},
40
+ HELLO => {:type => Thrift::Types::STRUCT, :name => 'hello', :default => Hello.new({
41
+ %q"greeting" => %q"hello, world!",
42
+ }), :class => SpecNamespace::Hello},
43
+ INTS => {:type => Thrift::Types::LIST, :name => 'ints', :default => [
44
+ 1,
45
+ 2,
46
+ 2,
47
+ 3,
48
+ ], :element => {:type => Thrift::Types::I32}},
49
+ COMPLEX => {:type => Thrift::Types::MAP, :name => 'complex', :key => {:type => Thrift::Types::I32}, :value => {:type => Thrift::Types::MAP, :key => {:type => Thrift::Types::STRING}, :value => {:type => Thrift::Types::DOUBLE}}},
50
+ SHORTS => {:type => Thrift::Types::SET, :name => 'shorts', :default => Set.new([ 5,
51
+ 17,
52
+ 239,
53
+ ]), :element => {:type => Thrift::Types::I16}},
54
+ OPT_STRING => {:type => Thrift::Types::STRING, :name => 'opt_string', :optional => true}
55
+ }
56
+
57
+ def struct_fields; FIELDS; end
58
+
59
+ def validate
60
+ end
61
+
62
+ end
63
+
64
+ class BoolStruct
65
+ include ::Thrift::Struct
66
+ YESNO = 1
67
+
68
+ Thrift::Struct.field_accessor self, :yesno
69
+ FIELDS = {
70
+ YESNO => {:type => Thrift::Types::BOOL, :name => 'yesno', :default => true}
71
+ }
72
+
73
+ def struct_fields; FIELDS; end
74
+
75
+ def validate
76
+ end
77
+
78
+ end
79
+
80
+ class SimpleList
81
+ include ::Thrift::Struct
82
+ BOOLS = 1
83
+ BYTES = 2
84
+ I16S = 3
85
+ I32S = 4
86
+ I64S = 5
87
+ DOUBLES = 6
88
+ STRINGS = 7
89
+ MAPS = 8
90
+ LISTS = 9
91
+ SETS = 10
92
+ HELLOS = 11
93
+
94
+ Thrift::Struct.field_accessor self, :bools, :bytes, :i16s, :i32s, :i64s, :doubles, :strings, :maps, :lists, :sets, :hellos
95
+ FIELDS = {
96
+ BOOLS => {:type => Thrift::Types::LIST, :name => 'bools', :element => {:type => Thrift::Types::BOOL}},
97
+ BYTES => {:type => Thrift::Types::LIST, :name => 'bytes', :element => {:type => Thrift::Types::BYTE}},
98
+ I16S => {:type => Thrift::Types::LIST, :name => 'i16s', :element => {:type => Thrift::Types::I16}},
99
+ I32S => {:type => Thrift::Types::LIST, :name => 'i32s', :element => {:type => Thrift::Types::I32}},
100
+ I64S => {:type => Thrift::Types::LIST, :name => 'i64s', :element => {:type => Thrift::Types::I64}},
101
+ DOUBLES => {:type => Thrift::Types::LIST, :name => 'doubles', :element => {:type => Thrift::Types::DOUBLE}},
102
+ STRINGS => {:type => Thrift::Types::LIST, :name => 'strings', :element => {:type => Thrift::Types::STRING}},
103
+ MAPS => {:type => Thrift::Types::LIST, :name => 'maps', :element => {:type => Thrift::Types::MAP, :key => {:type => Thrift::Types::I16}, :value => {:type => Thrift::Types::I16}}},
104
+ LISTS => {:type => Thrift::Types::LIST, :name => 'lists', :element => {:type => Thrift::Types::LIST, :element => {:type => Thrift::Types::I16}}},
105
+ SETS => {:type => Thrift::Types::LIST, :name => 'sets', :element => {:type => Thrift::Types::SET, :element => {:type => Thrift::Types::I16}}},
106
+ HELLOS => {:type => Thrift::Types::LIST, :name => 'hellos', :element => {:type => Thrift::Types::STRUCT, :class => SpecNamespace::Hello}}
107
+ }
108
+
109
+ def struct_fields; FIELDS; end
110
+
111
+ def validate
112
+ end
113
+
114
+ end
115
+
116
+ class Xception < Thrift::Exception
117
+ include ::Thrift::Struct
118
+ MESSAGE = 1
119
+ CODE = 2
120
+
121
+ Thrift::Struct.field_accessor self, :message, :code
122
+ FIELDS = {
123
+ MESSAGE => {:type => Thrift::Types::STRING, :name => 'message'},
124
+ CODE => {:type => Thrift::Types::I32, :name => 'code', :default => 1}
125
+ }
126
+
127
+ def struct_fields; FIELDS; end
128
+
129
+ def validate
130
+ end
131
+
132
+ end
133
+
134
+ end
data/thrift.gemspec CHANGED
@@ -2,22 +2,22 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{thrift}
5
- s.version = "0.2.0"
5
+ s.version = "0.2.0.2"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Kevin Ballard, Kevin Clark, Mark Slee, Evan Weaver"]
9
9
  s.cert_chain = ["/Users/eweaver/p/configuration/gem_certificates/evan_weaver-original-public_cert.pem"]
10
- s.date = %q{2010-02-05}
10
+ s.date = %q{2010-04-14}
11
11
  s.description = %q{Ruby libraries for Thrift (a language-agnostic RPC system)}
12
12
  s.email = %q{}
13
13
  s.extensions = ["ext/extconf.rb"]
14
- s.extra_rdoc_files = ["CHANGELOG", "README", "ext/binary_protocol_accelerated.c", "ext/binary_protocol_accelerated.h", "ext/compact_protocol.c", "ext/compact_protocol.h", "ext/conftest.dSYM/Contents/Info.plist", "ext/conftest.dSYM/Contents/Resources/DWARF/conftest", "ext/constants.h", "ext/extconf.rb", "ext/macros.h", "ext/memory_buffer.c", "ext/memory_buffer.h", "ext/protocol.c", "ext/protocol.h", "ext/struct.c", "ext/struct.h", "ext/thrift_native.c", "lib/thrift.rb", "lib/thrift/client.rb", "lib/thrift/core_ext.rb", "lib/thrift/core_ext/fixnum.rb", "lib/thrift/exceptions.rb", "lib/thrift/processor.rb", "lib/thrift/protocol/base_protocol.rb", "lib/thrift/protocol/binary_protocol.rb", "lib/thrift/protocol/binary_protocol_accelerated.rb", "lib/thrift/protocol/compact_protocol.rb", "lib/thrift/serializer/deserializer.rb", "lib/thrift/serializer/serializer.rb", "lib/thrift/server/base_server.rb", "lib/thrift/server/mongrel_http_server.rb", "lib/thrift/server/nonblocking_server.rb", "lib/thrift/server/simple_server.rb", "lib/thrift/server/thread_pool_server.rb", "lib/thrift/server/threaded_server.rb", "lib/thrift/struct.rb", "lib/thrift/thrift_native.rb", "lib/thrift/transport/base_server_transport.rb", "lib/thrift/transport/base_transport.rb", "lib/thrift/transport/buffered_transport.rb", "lib/thrift/transport/framed_transport.rb", "lib/thrift/transport/http_client_transport.rb", "lib/thrift/transport/io_stream_transport.rb", "lib/thrift/transport/memory_buffer_transport.rb", "lib/thrift/transport/server_socket.rb", "lib/thrift/transport/socket.rb", "lib/thrift/transport/unix_server_socket.rb", "lib/thrift/transport/unix_socket.rb", "lib/thrift/types.rb"]
15
- s.files = ["CHANGELOG", "Makefile.am", "Manifest", "README", "Rakefile", "benchmark/Benchmark.thrift", "benchmark/benchmark.rb", "benchmark/client.rb", "benchmark/server.rb", "benchmark/thin_server.rb", "ext/binary_protocol_accelerated.c", "ext/binary_protocol_accelerated.h", "ext/compact_protocol.c", "ext/compact_protocol.h", "ext/conftest.dSYM/Contents/Info.plist", "ext/conftest.dSYM/Contents/Resources/DWARF/conftest", "ext/constants.h", "ext/extconf.rb", "ext/macros.h", "ext/memory_buffer.c", "ext/memory_buffer.h", "ext/protocol.c", "ext/protocol.h", "ext/struct.c", "ext/struct.h", "ext/thrift_native.c", "lib/thrift.rb", "lib/thrift/client.rb", "lib/thrift/core_ext.rb", "lib/thrift/core_ext/fixnum.rb", "lib/thrift/exceptions.rb", "lib/thrift/processor.rb", "lib/thrift/protocol/base_protocol.rb", "lib/thrift/protocol/binary_protocol.rb", "lib/thrift/protocol/binary_protocol_accelerated.rb", "lib/thrift/protocol/compact_protocol.rb", "lib/thrift/serializer/deserializer.rb", "lib/thrift/serializer/serializer.rb", "lib/thrift/server/base_server.rb", "lib/thrift/server/mongrel_http_server.rb", "lib/thrift/server/nonblocking_server.rb", "lib/thrift/server/simple_server.rb", "lib/thrift/server/thread_pool_server.rb", "lib/thrift/server/threaded_server.rb", "lib/thrift/struct.rb", "lib/thrift/thrift_native.rb", "lib/thrift/transport/base_server_transport.rb", "lib/thrift/transport/base_transport.rb", "lib/thrift/transport/buffered_transport.rb", "lib/thrift/transport/framed_transport.rb", "lib/thrift/transport/http_client_transport.rb", "lib/thrift/transport/io_stream_transport.rb", "lib/thrift/transport/memory_buffer_transport.rb", "lib/thrift/transport/server_socket.rb", "lib/thrift/transport/socket.rb", "lib/thrift/transport/unix_server_socket.rb", "lib/thrift/transport/unix_socket.rb", "lib/thrift/types.rb", "script/proto_benchmark.rb", "script/read_struct.rb", "script/write_struct.rb", "setup.rb", "spec/ThriftSpec.thrift", "spec/base_protocol_spec.rb", "spec/base_transport_spec.rb", "spec/binary_protocol_accelerated_spec.rb", "spec/binary_protocol_spec.rb", "spec/binary_protocol_spec_shared.rb", "spec/client_spec.rb", "spec/compact_protocol_spec.rb", "spec/exception_spec.rb", "spec/http_client_spec.rb", "spec/mongrel_http_server_spec.rb", "spec/nonblocking_server_spec.rb", "spec/processor_spec.rb", "spec/serializer_spec.rb", "spec/server_socket_spec.rb", "spec/server_spec.rb", "spec/socket_spec.rb", "spec/socket_spec_shared.rb", "spec/spec_helper.rb", "spec/struct_spec.rb", "spec/types_spec.rb", "spec/unix_socket_spec.rb", "thrift.gemspec"]
14
+ s.extra_rdoc_files = ["CHANGELOG", "README", "ext/binary_protocol_accelerated.c", "ext/binary_protocol_accelerated.h", "ext/compact_protocol.c", "ext/compact_protocol.h", "ext/constants.h", "ext/extconf.rb", "ext/macros.h", "ext/memory_buffer.c", "ext/memory_buffer.h", "ext/protocol.c", "ext/protocol.h", "ext/struct.c", "ext/struct.h", "ext/thrift_native.c", "lib/thrift.rb", "lib/thrift/client.rb", "lib/thrift/core_ext.rb", "lib/thrift/core_ext/fixnum.rb", "lib/thrift/exceptions.rb", "lib/thrift/processor.rb", "lib/thrift/protocol/base_protocol.rb", "lib/thrift/protocol/binary_protocol.rb", "lib/thrift/protocol/binary_protocol_accelerated.rb", "lib/thrift/protocol/binaryprotocol.rb", "lib/thrift/protocol/binaryprotocolaccelerated.rb", "lib/thrift/protocol/compact_protocol.rb", "lib/thrift/protocol/tbinaryprotocol.rb", "lib/thrift/protocol/tprotocol.rb", "lib/thrift/serializer/deserializer.rb", "lib/thrift/serializer/serializer.rb", "lib/thrift/server/base_server.rb", "lib/thrift/server/httpserver.rb", "lib/thrift/server/mongrel_http_server.rb", "lib/thrift/server/nonblocking_server.rb", "lib/thrift/server/nonblockingserver.rb", "lib/thrift/server/simple_server.rb", "lib/thrift/server/thread_pool_server.rb", "lib/thrift/server/threaded_server.rb", "lib/thrift/server/thttpserver.rb", "lib/thrift/server/tserver.rb", "lib/thrift/struct.rb", "lib/thrift/thrift_native.rb", "lib/thrift/transport/base_server_transport.rb", "lib/thrift/transport/base_transport.rb", "lib/thrift/transport/buffered_transport.rb", "lib/thrift/transport/framed_transport.rb", "lib/thrift/transport/http_client_transport.rb", "lib/thrift/transport/io_stream_transport.rb", "lib/thrift/transport/memory_buffer_transport.rb", "lib/thrift/transport/server_socket.rb", "lib/thrift/transport/socket.rb", "lib/thrift/transport/unix_server_socket.rb", "lib/thrift/transport/unix_socket.rb", "lib/thrift/types.rb"]
15
+ s.files = ["CHANGELOG", "Makefile.am", "Manifest", "README", "Rakefile", "benchmark/Benchmark.thrift", "benchmark/benchmark.rb", "benchmark/client.rb", "benchmark/gen-rb/BenchmarkService.rb", "benchmark/gen-rb/Benchmark_constants.rb", "benchmark/gen-rb/Benchmark_types.rb", "benchmark/server.rb", "benchmark/thin_server.rb", "ext/binary_protocol_accelerated.c", "ext/binary_protocol_accelerated.h", "ext/compact_protocol.c", "ext/compact_protocol.h", "ext/constants.h", "ext/extconf.rb", "ext/macros.h", "ext/memory_buffer.c", "ext/memory_buffer.h", "ext/protocol.c", "ext/protocol.h", "ext/struct.c", "ext/struct.h", "ext/thrift_native.c", "lib/thrift.rb", "lib/thrift/client.rb", "lib/thrift/core_ext.rb", "lib/thrift/core_ext/fixnum.rb", "lib/thrift/exceptions.rb", "lib/thrift/processor.rb", "lib/thrift/protocol/base_protocol.rb", "lib/thrift/protocol/binary_protocol.rb", "lib/thrift/protocol/binary_protocol_accelerated.rb", "lib/thrift/protocol/binaryprotocol.rb", "lib/thrift/protocol/binaryprotocolaccelerated.rb", "lib/thrift/protocol/compact_protocol.rb", "lib/thrift/protocol/tbinaryprotocol.rb", "lib/thrift/protocol/tprotocol.rb", "lib/thrift/serializer/deserializer.rb", "lib/thrift/serializer/serializer.rb", "lib/thrift/server/base_server.rb", "lib/thrift/server/httpserver.rb", "lib/thrift/server/mongrel_http_server.rb", "lib/thrift/server/nonblocking_server.rb", "lib/thrift/server/nonblockingserver.rb", "lib/thrift/server/simple_server.rb", "lib/thrift/server/thread_pool_server.rb", "lib/thrift/server/threaded_server.rb", "lib/thrift/server/thttpserver.rb", "lib/thrift/server/tserver.rb", "lib/thrift/struct.rb", "lib/thrift/thrift_native.rb", "lib/thrift/transport/base_server_transport.rb", "lib/thrift/transport/base_transport.rb", "lib/thrift/transport/buffered_transport.rb", "lib/thrift/transport/framed_transport.rb", "lib/thrift/transport/http_client_transport.rb", "lib/thrift/transport/io_stream_transport.rb", "lib/thrift/transport/memory_buffer_transport.rb", "lib/thrift/transport/server_socket.rb", "lib/thrift/transport/socket.rb", "lib/thrift/transport/unix_server_socket.rb", "lib/thrift/transport/unix_socket.rb", "lib/thrift/types.rb", "script/proto_benchmark.rb", "script/read_struct.rb", "script/write_struct.rb", "setup.rb", "spec/ThriftSpec.thrift", "spec/base_protocol_spec.rb", "spec/base_transport_spec.rb", "spec/binary_protocol_accelerated_spec.rb", "spec/binary_protocol_spec.rb", "spec/binary_protocol_spec_shared.rb", "spec/client_spec.rb", "spec/compact_protocol_spec.rb", "spec/exception_spec.rb", "spec/gen-rb/NonblockingService.rb", "spec/gen-rb/ThriftSpec_constants.rb", "spec/gen-rb/ThriftSpec_types.rb", "spec/http_client_spec.rb", "spec/mongrel_http_server_spec.rb", "spec/nonblocking_server_spec.rb", "spec/processor_spec.rb", "spec/serializer_spec.rb", "spec/server_socket_spec.rb", "spec/server_spec.rb", "spec/socket_spec.rb", "spec/socket_spec_shared.rb", "spec/spec_helper.rb", "spec/struct_spec.rb", "spec/types_spec.rb", "spec/unix_socket_spec.rb", "thrift.gemspec"]
16
16
  s.homepage = %q{http://blog.evanweaver.com/files/doc/fauna/thrift/}
17
17
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Thrift", "--main", "README"]
18
18
  s.require_paths = ["lib", "ext"]
19
19
  s.rubyforge_project = %q{fauna}
20
- s.rubygems_version = %q{1.3.5}
20
+ s.rubygems_version = %q{1.3.6}
21
21
  s.signing_key = %q{/Users/eweaver/p/configuration/gem_certificates/evan_weaver-original-private_key.pem}
22
22
  s.summary = %q{Ruby libraries for Thrift (a language-agnostic RPC system)}
23
23
 
metadata CHANGED
@@ -1,7 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thrift
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 2
8
+ - 0
9
+ - 2
10
+ version: 0.2.0.2
5
11
  platform: ruby
6
12
  authors:
7
13
  - Kevin Ballard, Kevin Clark, Mark Slee, Evan Weaver
@@ -30,7 +36,7 @@ cert_chain:
30
36
  yZ0=
31
37
  -----END CERTIFICATE-----
32
38
 
33
- date: 2010-02-05 00:00:00 -08:00
39
+ date: 2010-04-14 00:00:00 -07:00
34
40
  default_executable:
35
41
  dependencies: []
36
42
 
@@ -47,8 +53,6 @@ extra_rdoc_files:
47
53
  - ext/binary_protocol_accelerated.h
48
54
  - ext/compact_protocol.c
49
55
  - ext/compact_protocol.h
50
- - ext/conftest.dSYM/Contents/Info.plist
51
- - ext/conftest.dSYM/Contents/Resources/DWARF/conftest
52
56
  - ext/constants.h
53
57
  - ext/extconf.rb
54
58
  - ext/macros.h
@@ -68,15 +72,23 @@ extra_rdoc_files:
68
72
  - lib/thrift/protocol/base_protocol.rb
69
73
  - lib/thrift/protocol/binary_protocol.rb
70
74
  - lib/thrift/protocol/binary_protocol_accelerated.rb
75
+ - lib/thrift/protocol/binaryprotocol.rb
76
+ - lib/thrift/protocol/binaryprotocolaccelerated.rb
71
77
  - lib/thrift/protocol/compact_protocol.rb
78
+ - lib/thrift/protocol/tbinaryprotocol.rb
79
+ - lib/thrift/protocol/tprotocol.rb
72
80
  - lib/thrift/serializer/deserializer.rb
73
81
  - lib/thrift/serializer/serializer.rb
74
82
  - lib/thrift/server/base_server.rb
83
+ - lib/thrift/server/httpserver.rb
75
84
  - lib/thrift/server/mongrel_http_server.rb
76
85
  - lib/thrift/server/nonblocking_server.rb
86
+ - lib/thrift/server/nonblockingserver.rb
77
87
  - lib/thrift/server/simple_server.rb
78
88
  - lib/thrift/server/thread_pool_server.rb
79
89
  - lib/thrift/server/threaded_server.rb
90
+ - lib/thrift/server/thttpserver.rb
91
+ - lib/thrift/server/tserver.rb
80
92
  - lib/thrift/struct.rb
81
93
  - lib/thrift/thrift_native.rb
82
94
  - lib/thrift/transport/base_server_transport.rb
@@ -100,14 +112,15 @@ files:
100
112
  - benchmark/Benchmark.thrift
101
113
  - benchmark/benchmark.rb
102
114
  - benchmark/client.rb
115
+ - benchmark/gen-rb/BenchmarkService.rb
116
+ - benchmark/gen-rb/Benchmark_constants.rb
117
+ - benchmark/gen-rb/Benchmark_types.rb
103
118
  - benchmark/server.rb
104
119
  - benchmark/thin_server.rb
105
120
  - ext/binary_protocol_accelerated.c
106
121
  - ext/binary_protocol_accelerated.h
107
122
  - ext/compact_protocol.c
108
123
  - ext/compact_protocol.h
109
- - ext/conftest.dSYM/Contents/Info.plist
110
- - ext/conftest.dSYM/Contents/Resources/DWARF/conftest
111
124
  - ext/constants.h
112
125
  - ext/extconf.rb
113
126
  - ext/macros.h
@@ -127,15 +140,23 @@ files:
127
140
  - lib/thrift/protocol/base_protocol.rb
128
141
  - lib/thrift/protocol/binary_protocol.rb
129
142
  - lib/thrift/protocol/binary_protocol_accelerated.rb
143
+ - lib/thrift/protocol/binaryprotocol.rb
144
+ - lib/thrift/protocol/binaryprotocolaccelerated.rb
130
145
  - lib/thrift/protocol/compact_protocol.rb
146
+ - lib/thrift/protocol/tbinaryprotocol.rb
147
+ - lib/thrift/protocol/tprotocol.rb
131
148
  - lib/thrift/serializer/deserializer.rb
132
149
  - lib/thrift/serializer/serializer.rb
133
150
  - lib/thrift/server/base_server.rb
151
+ - lib/thrift/server/httpserver.rb
134
152
  - lib/thrift/server/mongrel_http_server.rb
135
153
  - lib/thrift/server/nonblocking_server.rb
154
+ - lib/thrift/server/nonblockingserver.rb
136
155
  - lib/thrift/server/simple_server.rb
137
156
  - lib/thrift/server/thread_pool_server.rb
138
157
  - lib/thrift/server/threaded_server.rb
158
+ - lib/thrift/server/thttpserver.rb
159
+ - lib/thrift/server/tserver.rb
139
160
  - lib/thrift/struct.rb
140
161
  - lib/thrift/thrift_native.rb
141
162
  - lib/thrift/transport/base_server_transport.rb
@@ -163,6 +184,9 @@ files:
163
184
  - spec/client_spec.rb
164
185
  - spec/compact_protocol_spec.rb
165
186
  - spec/exception_spec.rb
187
+ - spec/gen-rb/NonblockingService.rb
188
+ - spec/gen-rb/ThriftSpec_constants.rb
189
+ - spec/gen-rb/ThriftSpec_types.rb
166
190
  - spec/http_client_spec.rb
167
191
  - spec/mongrel_http_server_spec.rb
168
192
  - spec/nonblocking_server_spec.rb
@@ -196,18 +220,21 @@ required_ruby_version: !ruby/object:Gem::Requirement
196
220
  requirements:
197
221
  - - ">="
198
222
  - !ruby/object:Gem::Version
223
+ segments:
224
+ - 0
199
225
  version: "0"
200
- version:
201
226
  required_rubygems_version: !ruby/object:Gem::Requirement
202
227
  requirements:
203
228
  - - ">="
204
229
  - !ruby/object:Gem::Version
230
+ segments:
231
+ - 1
232
+ - 2
205
233
  version: "1.2"
206
- version:
207
234
  requirements: []
208
235
 
209
236
  rubyforge_project: fauna
210
- rubygems_version: 1.3.5
237
+ rubygems_version: 1.3.6
211
238
  signing_key:
212
239
  specification_version: 3
213
240
  summary: Ruby libraries for Thrift (a language-agnostic RPC system)
metadata.gz.sig CHANGED
Binary file
@@ -1,25 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
- <plist version="1.0">
4
- <dict>
5
- <key>CFBundleDevelopmentRegion</key>
6
- <string>English</string>
7
- <key>CFBundleIdentifier</key>
8
- <string>com.apple.xcode.dsym.conftest</string>
9
- <key>CFBundleInfoDictionaryVersion</key>
10
- <string>6.0</string>
11
- <key>CFBundlePackageType</key>
12
- <string>dSYM</string>
13
- <key>CFBundleSignature</key>
14
- <string>????</string>
15
- <key>CFBundleShortVersionString</key>
16
- <string>1.0</string>
17
- <key>CFBundleVersion</key>
18
- <string>1</string>
19
- <key>dSYM_UUID</key>
20
- <dict>
21
- <key>i386</key>
22
- <string>0ED9CE1B-7105-E386-69F7-9298B6908992</string>
23
- </dict>
24
- </dict>
25
- </plist>