diff options
author | Jamis Buck <jamis@37signals.com> | 2005-08-31 09:15:09 +0000 |
---|---|---|
committer | Jamis Buck <jamis@37signals.com> | 2005-08-31 09:15:09 +0000 |
commit | 2a8e33872b3b8f297cad50a2c5eaba3cbaeeaa1b (patch) | |
tree | dec868847df6bd0c82c33fce83927e51cbea9017 /railties/Rakefile | |
parent | b9cae60e85f17e393dd4d8649f46c1ad2e0b21a4 (diff) | |
download | rails-2a8e33872b3b8f297cad50a2c5eaba3cbaeeaa1b.tar.gz rails-2a8e33872b3b8f297cad50a2c5eaba3cbaeeaa1b.tar.bz2 rails-2a8e33872b3b8f297cad50a2c5eaba3cbaeeaa1b.zip |
Make the default rakefile read *.rake files from config/tasks (for easy extension of the rakefile by e.g. generators)
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2081 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/Rakefile')
-rw-r--r-- | railties/Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/Rakefile b/railties/Rakefile index 4aa932faa2..e086c76ed6 100644 --- a/railties/Rakefile +++ b/railties/Rakefile @@ -26,7 +26,7 @@ RUBY_FORGE_USER = "webster132" # end -BASE_DIRS = %w( app config/environments components db doc log lib public script script/process test vendor ) +BASE_DIRS = %w( app config/environments config/tasks components db doc log lib public script script/process test vendor ) APP_DIRS = %w( apis models controllers helpers views views/layouts ) PUBLIC_DIRS = %w( images javascripts stylesheets ) TEST_DIRS = %w( fixtures unit functional mocks mocks/development mocks/test ) |