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 03:16:35 UTC

svn commit: r669003 - /incubator/thrift/trunk/lib/rb/lib/thrift.rb

Author: kclark
Date: Tue Jun 17 18:16:35 2008
New Revision: 669003

URL: http://svn.apache.org/viewvc?rev=669003&view=rev
Log:
rb: Add thrift/protocol/binaryprotocol to the root lib/thrift file to cut down on client-side requires

Modified:
    incubator/thrift/trunk/lib/rb/lib/thrift.rb

Modified: incubator/thrift/trunk/lib/rb/lib/thrift.rb
URL: http://svn.apache.org/viewvc/incubator/thrift/trunk/lib/rb/lib/thrift.rb?rev=669003&r1=669002&r2=669003&view=diff
==============================================================================
--- incubator/thrift/trunk/lib/rb/lib/thrift.rb (original)
+++ incubator/thrift/trunk/lib/rb/lib/thrift.rb Tue Jun 17 18:16:35 2008
@@ -22,6 +22,7 @@
 require 'thrift/client'
 require 'thrift/struct'
 require 'thrift/protocol'
-require 'thrift/transport/socket'
+require 'thrift/protocol/binaryprotocol'
 require 'thrift/transport'
+require 'thrift/transport/socket'
 require 'thrift/server'