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/07/29 00:16:35 UTC

svn commit: r680539 - /incubator/thrift/trunk/lib/rb/spec/spec_helper.rb

Author: kclark
Date: Mon Jul 28 15:16:34 2008
New Revision: 680539

URL: http://svn.apache.org/viewvc?rev=680539&view=rev
Log:
rb: Add ext/ to loadpath so BinaryProtocolAccelerated specs pass

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

Modified: incubator/thrift/trunk/lib/rb/spec/spec_helper.rb
URL: http://svn.apache.org/viewvc/incubator/thrift/trunk/lib/rb/spec/spec_helper.rb?rev=680539&r1=680538&r2=680539&view=diff
==============================================================================
--- incubator/thrift/trunk/lib/rb/spec/spec_helper.rb (original)
+++ incubator/thrift/trunk/lib/rb/spec/spec_helper.rb Mon Jul 28 15:16:34 2008
@@ -3,6 +3,8 @@
 gem 'rspec', '>= 1.1.4'
 require 'spec'
 
+$:.unshift File.join(File.dirname(__FILE__), *%w[.. ext])
+
 # pretend we already loaded fastthread, otherwise the nonblockingserver_spec
 # will get screwed up
 # $" << 'fastthread.bundle'