You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by vb...@apache.org on 2008/05/15 20:24:47 UTC

svn commit: r656771 - /incubator/buildr/trunk/lib/buildr/core/application.rb

Author: vborja
Date: Thu May 15 11:24:47 2008
New Revision: 656771

URL: http://svn.apache.org/viewvc?rev=656771&view=rev
Log:
tasks/*.rake files are loaded before loading the buildfile (so that the later can use the tasks/functions defined on those files)

Modified:
    incubator/buildr/trunk/lib/buildr/core/application.rb

Modified: incubator/buildr/trunk/lib/buildr/core/application.rb
URL: http://svn.apache.org/viewvc/incubator/buildr/trunk/lib/buildr/core/application.rb?rev=656771&r1=656770&r2=656771&view=diff
==============================================================================
--- incubator/buildr/trunk/lib/buildr/core/application.rb (original)
+++ incubator/buildr/trunk/lib/buildr/core/application.rb Thu May 15 11:24:47 2008
@@ -174,8 +174,8 @@
           find_buildfile
           load_gems
           load_artifacts
-          load_buildfile
           load_tasks
+          load_buildfile
           top_level
         end
       end