You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by kc...@apache.org on 2009/05/05 02:43:59 UTC

svn commit: r771513 - in /incubator/thrift/trunk/lib/rb: Manifest Rakefile

Author: kclark
Date: Tue May  5 00:43:59 2009
New Revision: 771513

URL: http://svn.apache.org/viewvc?rev=771513&view=rev
Log:
Add version number to Rakefile, update generated manifest (via rake)

Modified:
    incubator/thrift/trunk/lib/rb/Manifest
    incubator/thrift/trunk/lib/rb/Rakefile

Modified: incubator/thrift/trunk/lib/rb/Manifest
URL: http://svn.apache.org/viewvc/incubator/thrift/trunk/lib/rb/Manifest?rev=771513&r1=771512&r2=771513&view=diff
==============================================================================
--- incubator/thrift/trunk/lib/rb/Manifest (original)
+++ incubator/thrift/trunk/lib/rb/Manifest Tue May  5 00:43:59 2009
@@ -1,9 +1,13 @@
+CHANGELOG
+Manifest
+Rakefile
+README
+setup.rb
 benchmark/benchmark.rb
 benchmark/Benchmark.thrift
 benchmark/client.rb
 benchmark/server.rb
 benchmark/thin_server.rb
-CHANGELOG
 ext/binary_protocol_accelerated.c
 ext/binary_protocol_accelerated.h
 ext/compact_protocol.c
@@ -18,37 +22,43 @@
 ext/struct.c
 ext/struct.h
 ext/thrift_native.c
+lib/thrift.rb
 lib/thrift/client.rb
-lib/thrift/core_ext/fixnum.rb
 lib/thrift/core_ext.rb
 lib/thrift/exceptions.rb
 lib/thrift/processor.rb
-lib/thrift/protocol/binary_protocol_accelerated.rb
+lib/thrift/struct.rb
+lib/thrift/thrift_native.rb
+lib/thrift/types.rb
+lib/thrift/core_ext/fixnum.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/protocol.rb
-lib/thrift/serializer/serializer.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.rb
-lib/thrift/struct.rb
-lib/thrift/thrift_native.rb
+lib/thrift/server/simple_server.rb
+lib/thrift/server/thread_pool_server.rb
+lib/thrift/server/threaded_server.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.rb
-lib/thrift/types.rb
-lib/thrift.rb
-Manifest
-Rakefile
-README
+lib/thrift/transport/server_socket.rb
+lib/thrift/transport/socket.rb
+lib/thrift/transport/unix_server_socket.rb
+lib/thrift/transport/unix_socket.rb
 script/proto_benchmark.rb
 script/read_struct.rb
 script/write_struct.rb
-setup.rb
+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
@@ -59,7 +69,6 @@
 spec/mongrel_http_server_spec.rb
 spec/nonblocking_server_spec.rb
 spec/processor_spec.rb
-spec/protocol_spec.rb
 spec/serializer_spec.rb
 spec/server_socket_spec.rb
 spec/server_spec.rb
@@ -68,6 +77,5 @@
 spec/spec_helper.rb
 spec/struct_spec.rb
 spec/ThriftSpec.thrift
-spec/transport_spec.rb
 spec/types_spec.rb
 spec/unix_socket_spec.rb

Modified: incubator/thrift/trunk/lib/rb/Rakefile
URL: http://svn.apache.org/viewvc/incubator/thrift/trunk/lib/rb/Rakefile?rev=771513&r1=771512&r2=771513&view=diff
==============================================================================
--- incubator/thrift/trunk/lib/rb/Rakefile (original)
+++ incubator/thrift/trunk/lib/rb/Rakefile Tue May  5 00:43:59 2009
@@ -82,6 +82,7 @@
     p.summary = "Ruby libraries for Thrift (a language-agnostic RPC system)"
     p.url = "http://incubator.apache.org/thrift/"
     p.include_rakefile = true
+    p.version = "0.1.0"
   end
 
   task :install => [:check_site_lib]