You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by to...@apache.org on 2010/06/07 07:56:29 UTC

svn commit: r952110 - /buildr/trunk/lib/buildr/java/test_result.rb

Author: toulmean
Date: Mon Jun  7 05:56:28 2010
New Revision: 952110

URL: http://svn.apache.org/viewvc?rev=952110&view=rev
Log:
fix the build by requiring yaml explicitly

Modified:
    buildr/trunk/lib/buildr/java/test_result.rb

Modified: buildr/trunk/lib/buildr/java/test_result.rb
URL: http://svn.apache.org/viewvc/buildr/trunk/lib/buildr/java/test_result.rb?rev=952110&r1=952109&r2=952110&view=diff
==============================================================================
--- buildr/trunk/lib/buildr/java/test_result.rb (original)
+++ buildr/trunk/lib/buildr/java/test_result.rb Mon Jun  7 05:56:28 2010
@@ -13,6 +13,8 @@
 # License for the specific language governing permissions and limitations under
 # the License.
 
+# necessary to require YAML even if it is mentioned by autoload as it fails on some platforms.
+require 'yaml' 
 require 'fileutils'
 module Buildr #:nodoc:
   module TestFramework