Load rake task files in alphabetical order so you can build dependencies and count on them (closes #2554) [Blair Zajac]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2740 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2005-10-26 12:50:29 +00:00
parent 85a7892644
commit 50f7c9a98b
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
*SVN*
* Load rake task files in alphabetical order so you can build dependencies and count on them #2554 [Blair Zajac]
*0.14.2 (RC3)* (October 26th, 2005)
* Constants set in the development/test/production environment file are set in Object

View File

@ -4,5 +4,5 @@ $VERBOSE = nil
Dir["#{File.dirname(__FILE__)}/*.rake"].each { |ext| load ext }
# Load any custom rakefile extensions
Dir["./lib/tasks/**/*.rake"].each { |ext| load ext }
Dir["./vendor/plugins/*/tasks/**/*.rake"].each { |ext| load ext }
Dir["./lib/tasks/**/*.rake"].sort.each { |ext| load ext }
Dir["./vendor/plugins/*/tasks/**/*.rake"].sort.each { |ext| load ext }