Skip to content

Commit

Permalink
Include tasks from vendor/plugins/*/tasks in the Rakefile #2545 [Rick…
Browse files Browse the repository at this point in the history
… Olson]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2697 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
  • Loading branch information
dhh committed Oct 21, 2005
1 parent 22d9bad commit 3b33a6f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions railties/CHANGELOG
@@ -1,3 +1,8 @@
*SVN*

* Include tasks from vendor/plugins/*/tasks in the Rakefile #2545 [Rick Olson]


*0.14.1* (October 19th, 2005) *0.14.1* (October 19th, 2005)


* Don't clean RAILS_ROOT on windows * Don't clean RAILS_ROOT on windows
Expand Down
3 changes: 2 additions & 1 deletion railties/lib/tasks/rails.rb
Expand Up @@ -4,4 +4,5 @@
Dir["#{File.dirname(__FILE__)}/*.rake"].each { |ext| load ext } Dir["#{File.dirname(__FILE__)}/*.rake"].each { |ext| load ext }


# Load any custom rakefile extensions # Load any custom rakefile extensions
Dir["./lib/tasks/**/*.rake"].each { |ext| load ext } Dir["./lib/tasks/**/*.rake"].each { |ext| load ext }
Dir["./vendor/plugins/*/tasks/**/*.rake"].each { |ext| load ext }

0 comments on commit 3b33a6f

Please sign in to comment.