rb: Move client, processor, struct files for consistant naming.
authorKevin Clark <kclark@apache.org>
Wed, 18 Jun 2008 00:53:48 +0000 (00:53 +0000)
committerKevin Clark <kclark@apache.org>
Wed, 18 Jun 2008 00:53:48 +0000 (00:53 +0000)
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@668903 13f79535-47bb-0310-9956-ffa450edef68

lib/rb/lib/thrift.rb
lib/rb/lib/thrift/client.rb [moved from lib/rb/lib/thrift/thrift_client.rb with 100% similarity]
lib/rb/lib/thrift/processor.rb [moved from lib/rb/lib/thrift/tprocessor.rb with 100% similarity]
lib/rb/lib/thrift/struct.rb [moved from lib/rb/lib/thrift/thrift_struct.rb with 100% similarity]

index 14d33cf..b9a65d2 100644 (file)
@@ -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'