From f93f7a661160caf0536d7c7d54c155d0a1330da4 Mon Sep 17 00:00:00 2001 From: Kevin Clark Date: Tue, 5 May 2009 00:43:59 +0000 Subject: [PATCH] Add version number to Rakefile, update generated manifest (via rake) git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@771513 13f79535-47bb-0310-9956-ffa450edef68 --- lib/rb/Manifest | 42 +++++++++++++++++++++++++----------------- lib/rb/Rakefile | 1 + 2 files changed, 26 insertions(+), 17 deletions(-) diff --git a/lib/rb/Manifest b/lib/rb/Manifest index d952c50f..7b4503fb 100644 --- a/lib/rb/Manifest +++ b/lib/rb/Manifest @@ -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/protocol.h 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/http_client_spec.rb 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/socket_spec_shared.rb spec/spec_helper.rb spec/struct_spec.rb spec/ThriftSpec.thrift -spec/transport_spec.rb spec/types_spec.rb spec/unix_socket_spec.rb diff --git a/lib/rb/Rakefile b/lib/rb/Rakefile index 6489bdf2..1a9467a5 100644 --- a/lib/rb/Rakefile +++ b/lib/rb/Rakefile @@ -82,6 +82,7 @@ begin 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] -- 2.17.1