You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by as...@apache.org on 2008/10/15 22:35:02 UTC

svn commit: r705031 - in /incubator/buildr/trunk: buildr.gemspec lib/buildr/core/application.rb spec/core/project_spec.rb

Author: assaf
Date: Wed Oct 15 13:35:02 2008
New Revision: 705031

URL: http://svn.apache.org/viewvc?rev=705031&view=rev
Log:
Upgraded to Rake 0.8.3.

Modified:
    incubator/buildr/trunk/buildr.gemspec
    incubator/buildr/trunk/lib/buildr/core/application.rb
    incubator/buildr/trunk/spec/core/project_spec.rb

Modified: incubator/buildr/trunk/buildr.gemspec
URL: http://svn.apache.org/viewvc/incubator/buildr/trunk/buildr.gemspec?rev=705031&r1=705030&r2=705031&view=diff
==============================================================================
--- incubator/buildr/trunk/buildr.gemspec (original)
+++ incubator/buildr/trunk/buildr.gemspec Wed Oct 15 13:35:02 2008
@@ -41,7 +41,7 @@
                            '--webcvs' << 'http://svn.apache.org/repos/asf/incubator/buildr/trunk/'
 
   # Tested against these dependencies.
-  spec.add_dependency 'rake',                 '0.8.1'
+  spec.add_dependency 'rake',                 '0.8.3'
   spec.add_dependency 'builder',              '2.1.2'
   spec.add_dependency 'net-ssh',              '2.0.4'
   spec.add_dependency 'net-sftp',             '2.0.1'

Modified: incubator/buildr/trunk/lib/buildr/core/application.rb
URL: http://svn.apache.org/viewvc/incubator/buildr/trunk/lib/buildr/core/application.rb?rev=705031&r1=705030&r2=705031&view=diff
==============================================================================
--- incubator/buildr/trunk/lib/buildr/core/application.rb (original)
+++ incubator/buildr/trunk/lib/buildr/core/application.rb Wed Oct 15 13:35:02 2008
@@ -262,7 +262,7 @@
     def find_buildfile #:nodoc:
       here = original_dir
       Dir.chdir(here) unless Dir.pwd == here
-      while ! have_rakefile
+      while !(@rakefile = have_rakefile)
         Dir.chdir('..')
         if Dir.pwd == here || options.nosearch
           error = "No Buildfile found (looking for: #{@rakefiles.join(', ')})"

Modified: incubator/buildr/trunk/spec/core/project_spec.rb
URL: http://svn.apache.org/viewvc/incubator/buildr/trunk/spec/core/project_spec.rb?rev=705031&r1=705030&r2=705031&view=diff
==============================================================================
--- incubator/buildr/trunk/spec/core/project_spec.rb (original)
+++ incubator/buildr/trunk/spec/core/project_spec.rb Wed Oct 15 13:35:02 2008
@@ -755,4 +755,4 @@
     Buildr.define('foo') { defined = true }
     lambda { task('buildr:initialize').invoke }.should change { defined }.to(true)
   end
-end
\ No newline at end of file
+end