Author: donaldp
Date: Sun May 20 01:49:41 2012
New Revision: 1340608
URL: http://svn.apache.org/viewvc?rev=1340608&view=rev
Log:
Ensure the Rake symbol is fully qualified else it fails to be found under
jruby. Unsure as to the root cause.
Modified:
buildr/trunk/lib/buildr/core/test.rb
Modified: buildr/trunk/lib/buildr/core/test.rb
URL:
http://svn.apache.org/viewvc/buildr/trunk/lib/buildr/core/test.rb?rev=1340608&r1=1340607&r2=1340608&view=diff
==============================================================================
--- buildr/trunk/lib/buildr/core/test.rb (original)
+++ buildr/trunk/lib/buildr/core/test.rb Sun May 20 01:49:41 2012
@@ -139,7 +139,7 @@ module Buildr
# cases are written in Java, then JUnit is selected as the test framework.
You can also select
# a specific test framework, for example, to use TestNG instead of JUnit:
# test.using :testng
- class TestTask < Rake::Task
+ class TestTask < ::Rake::Task
class << self