diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-10-28 13:00:33 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-10-28 13:00:33 +0000 |
commit | b31aa2dd575e2b0ee3944d47bf2a6520dbc36320 (patch) | |
tree | ff4d4afec8190a82151eecf19c57e84cd66095db /railties/Rakefile | |
parent | e508595cf70d6ebd057d8bfa6f2cd25a119cda3f (diff) | |
download | rails-b31aa2dd575e2b0ee3944d47bf2a6520dbc36320.tar.gz rails-b31aa2dd575e2b0ee3944d47bf2a6520dbc36320.tar.bz2 rails-b31aa2dd575e2b0ee3944d47bf2a6520dbc36320.zip |
Added app/services as a default dir in the Rails skeleton and to the load path. Use it to keep classes like MaintenanceService and PaymentGateway [DHH]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2782 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 53b965578f..db66c153b0 100644 --- a/railties/Rakefile +++ b/railties/Rakefile @@ -29,7 +29,7 @@ RUBY_FORGE_USER = "webster132" BASE_DIRS = %w( app config/environments components db doc log lib lib/tasks public script script/performance script/process test vendor vendor/plugins ) -APP_DIRS = %w( apis models controllers helpers views views/layouts ) +APP_DIRS = %w( apis models controllers helpers services views views/layouts ) PUBLIC_DIRS = %w( images javascripts stylesheets ) TEST_DIRS = %w( fixtures unit functional mocks mocks/development mocks/test ) |