diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2004-12-15 13:18:40 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2004-12-15 13:18:40 +0000 |
commit | 0802ca7095ad539690fdb0eed34312ed5fdcb1a3 (patch) | |
tree | 6db9455238859bd72a3a90878775de15e63a6e97 /railties/Rakefile | |
parent | db6179d12f06895aa3d813c495ff77bbddf439d1 (diff) | |
download | rails-0802ca7095ad539690fdb0eed34312ed5fdcb1a3.tar.gz rails-0802ca7095ad539690fdb0eed34312ed5fdcb1a3.tar.bz2 rails-0802ca7095ad539690fdb0eed34312ed5fdcb1a3.zip |
Generators shouldnt be placed in a new Rails creation by default
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@168 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/Rakefile')
-rw-r--r-- | railties/Rakefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/railties/Rakefile b/railties/Rakefile index 6a8edbcf1a..740c323aea 100644 --- a/railties/Rakefile +++ b/railties/Rakefile @@ -97,7 +97,7 @@ end desc "Make copies of all the default content of ties" task :copy_ties_content => [ :copy_rootfiles, :copy_dispatches, :copy_html_files, :copy_application, - :copy_configs, :copy_generators, :copy_binfiles, :copy_test_helpers, :copy_docs_in_public, + :copy_configs, :copy_binfiles, :copy_test_helpers, :copy_docs_in_public, :copy_app_doc_readme ] task :copy_dispatches do @@ -213,7 +213,6 @@ PKG_FILES = FileList[ 'doc/**/*', 'dispatches/**/*', 'environments/**/*', - 'generators/**/*', 'helpers/**/*', 'html/**/*', 'lib/**/*' |