thrift 0.0.820831 → 0.2.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.
- data.tar.gz.sig +0 -0
- data/CHANGELOG +2 -0
- data/Rakefile +1 -1
- data/ext/conftest.dSYM/Contents/Info.plist +1 -1
- data/ext/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
- data/thrift.gemspec +3 -3
- metadata +3 -3
- metadata.gz.sig +0 -0
data.tar.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG
CHANGED
data/Rakefile
CHANGED
|
@@ -79,7 +79,7 @@ begin
|
|
|
79
79
|
Echoe.new('thrift') do |p|
|
|
80
80
|
p.author = ['Kevin Ballard', 'Kevin Clark', 'Mark Slee', 'Evan Weaver']
|
|
81
81
|
p.project = "fauna"
|
|
82
|
-
p.summary = "Ruby libraries for Thrift
|
|
82
|
+
p.summary = "Ruby libraries for Thrift (a language-agnostic RPC system)"
|
|
83
83
|
p.include_rakefile = true
|
|
84
84
|
p.url = "http://blog.evanweaver.com/files/doc/fauna/thrift/"
|
|
85
85
|
p.docs_host = "blog.evanweaver.com:~/www/bax/public/files/doc/"
|
|
Binary file
|
data/thrift.gemspec
CHANGED
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = %q{thrift}
|
|
5
|
-
s.version = "0.0
|
|
5
|
+
s.version = "0.2.0"
|
|
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
10
|
s.date = %q{2010-02-05}
|
|
11
|
-
s.description = %q{Ruby libraries for Thrift
|
|
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
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"]
|
|
@@ -19,7 +19,7 @@ Gem::Specification.new do |s|
|
|
|
19
19
|
s.rubyforge_project = %q{fauna}
|
|
20
20
|
s.rubygems_version = %q{1.3.5}
|
|
21
21
|
s.signing_key = %q{/Users/eweaver/p/configuration/gem_certificates/evan_weaver-original-private_key.pem}
|
|
22
|
-
s.summary = %q{Ruby libraries for Thrift
|
|
22
|
+
s.summary = %q{Ruby libraries for Thrift (a language-agnostic RPC system)}
|
|
23
23
|
|
|
24
24
|
if s.respond_to? :specification_version then
|
|
25
25
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: thrift
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kevin Ballard, Kevin Clark, Mark Slee, Evan Weaver
|
|
@@ -34,7 +34,7 @@ date: 2010-02-05 00:00:00 -08:00
|
|
|
34
34
|
default_executable:
|
|
35
35
|
dependencies: []
|
|
36
36
|
|
|
37
|
-
description: Ruby libraries for Thrift
|
|
37
|
+
description: Ruby libraries for Thrift (a language-agnostic RPC system)
|
|
38
38
|
email: ""
|
|
39
39
|
executables: []
|
|
40
40
|
|
|
@@ -210,6 +210,6 @@ rubyforge_project: fauna
|
|
|
210
210
|
rubygems_version: 1.3.5
|
|
211
211
|
signing_key:
|
|
212
212
|
specification_version: 3
|
|
213
|
-
summary: Ruby libraries for Thrift
|
|
213
|
+
summary: Ruby libraries for Thrift (a language-agnostic RPC system)
|
|
214
214
|
test_files: []
|
|
215
215
|
|
metadata.gz.sig
CHANGED
|
Binary file
|