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 2008/06/18 02:55:50 UTC

svn commit: r668909 - in /incubator/thrift/trunk/lib/rb/lib/thrift: protocol/tprotocol.rb server/tserver.rb transport/ttransport.rb

Author: kclark
Date: Tue Jun 17 17:55:50 2008
New Revision: 668909

URL: http://svn.apache.org/viewvc?rev=668909&view=rev
Log:
Remove requires of 'thrift/thrift' from library files

Modified:
    incubator/thrift/trunk/lib/rb/lib/thrift/protocol/tprotocol.rb
    incubator/thrift/trunk/lib/rb/lib/thrift/server/tserver.rb
    incubator/thrift/trunk/lib/rb/lib/thrift/transport/ttransport.rb

Modified: incubator/thrift/trunk/lib/rb/lib/thrift/protocol/tprotocol.rb
URL: http://svn.apache.org/viewvc/incubator/thrift/trunk/lib/rb/lib/thrift/protocol/tprotocol.rb?rev=668909&r1=668908&r2=668909&view=diff
==============================================================================
--- incubator/thrift/trunk/lib/rb/lib/thrift/protocol/tprotocol.rb (original)
+++ incubator/thrift/trunk/lib/rb/lib/thrift/protocol/tprotocol.rb Tue Jun 17 17:55:50 2008
@@ -9,8 +9,6 @@
 # Author: Mark Slee <mc...@facebook.com>
 #
 
-require 'thrift/thrift'
-
 module Thrift
   class ProtocolException < Exception
 

Modified: incubator/thrift/trunk/lib/rb/lib/thrift/server/tserver.rb
URL: http://svn.apache.org/viewvc/incubator/thrift/trunk/lib/rb/lib/thrift/server/tserver.rb?rev=668909&r1=668908&r2=668909&view=diff
==============================================================================
--- incubator/thrift/trunk/lib/rb/lib/thrift/server/tserver.rb (original)
+++ incubator/thrift/trunk/lib/rb/lib/thrift/server/tserver.rb Tue Jun 17 17:55:50 2008
@@ -8,9 +8,9 @@
 #
 # Author: Mark Slee <mc...@facebook.com>
 #
-require('thrift/protocol/tprotocol')
-require('thrift/protocol/tbinaryprotocol')
-require('thrift/transport/ttransport')
+require 'thrift/protocol/tprotocol'
+require 'thrift/protocol/tbinaryprotocol'
+require 'thrift/transport/ttransport'
 
 class TServer
 

Modified: incubator/thrift/trunk/lib/rb/lib/thrift/transport/ttransport.rb
URL: http://svn.apache.org/viewvc/incubator/thrift/trunk/lib/rb/lib/thrift/transport/ttransport.rb?rev=668909&r1=668908&r2=668909&view=diff
==============================================================================
--- incubator/thrift/trunk/lib/rb/lib/thrift/transport/ttransport.rb (original)
+++ incubator/thrift/trunk/lib/rb/lib/thrift/transport/ttransport.rb Tue Jun 17 17:55:50 2008
@@ -9,8 +9,6 @@
 # Author: Mark Slee <mc...@facebook.com>
 #
 
-require 'thrift/thrift'
-
 class TTransportException < Thrift::Exception
 
   UNKNOWN = 0