From 10cdf10a7bd5326680cc2384f8a812cff573a1df Mon Sep 17 00:00:00 2001 From: Kevin Clark Date: Wed, 18 Jun 2008 00:53:48 +0000 Subject: [PATCH] rb: Move client, processor, struct files for consistant naming. git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@668903 13f79535-47bb-0310-9956-ffa450edef68 --- lib/rb/lib/thrift.rb | 6 +++--- lib/rb/lib/thrift/{thrift_client.rb => client.rb} | 0 lib/rb/lib/thrift/{tprocessor.rb => processor.rb} | 0 lib/rb/lib/thrift/{thrift_struct.rb => struct.rb} | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename lib/rb/lib/thrift/{thrift_client.rb => client.rb} (100%) rename lib/rb/lib/thrift/{tprocessor.rb => processor.rb} (100%) rename lib/rb/lib/thrift/{thrift_struct.rb => struct.rb} (100%) diff --git a/lib/rb/lib/thrift.rb b/lib/rb/lib/thrift.rb index 14d33cf6..b9a65d2f 100644 --- a/lib/rb/lib/thrift.rb +++ b/lib/rb/lib/thrift.rb @@ -18,13 +18,13 @@ require 'thrift/types' TType = Thrift::Types TMessageType = Thrift::MessageTypes -require 'thrift/tprocessor' +require 'thrift/processor' TProcessor = Thrift::Processor -require 'thrift/thrift_client' +require 'thrift/client' ThriftClient = Thrift::Client -require 'thrift/thrift_struct' +require 'thrift/struct' ThriftStruct = Thrift::Struct require 'thrift/protocol/tprotocol' diff --git a/lib/rb/lib/thrift/thrift_client.rb b/lib/rb/lib/thrift/client.rb similarity index 100% rename from lib/rb/lib/thrift/thrift_client.rb rename to lib/rb/lib/thrift/client.rb diff --git a/lib/rb/lib/thrift/tprocessor.rb b/lib/rb/lib/thrift/processor.rb similarity index 100% rename from lib/rb/lib/thrift/tprocessor.rb rename to lib/rb/lib/thrift/processor.rb diff --git a/lib/rb/lib/thrift/thrift_struct.rb b/lib/rb/lib/thrift/struct.rb similarity index 100% rename from lib/rb/lib/thrift/thrift_struct.rb rename to lib/rb/lib/thrift/struct.rb -- 2.17.1