diff options
Diffstat (limited to 'railties/Rakefile')
-rw-r--r-- | railties/Rakefile | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/railties/Rakefile b/railties/Rakefile index 2b3bbad905..ba795ea2b4 100644 --- a/railties/Rakefile +++ b/railties/Rakefile @@ -21,10 +21,9 @@ TEST_DIRS = %w( fixtures unit functional mocks mocks/development mocks/testing LOG_FILES = %w( apache.log development.log test.log production.log ) HTML_FILES = %w( 404.html 500.html index.html ) -BIN_FILES = %w( generate breakpointer console server ) -GENERATORS = %w( controller mailer model scaffold ) +BIN_FILES = %w( generate destroy breakpointer console server update ) -VENDOR_LIBS = %w( actionpack activerecord actionmailer railties ) +VENDOR_LIBS = %w( actionpack activerecord actionmailer activesupport railties ) desc "Default Task" @@ -142,14 +141,6 @@ task :copy_configs do cp "environments/test.rb", "#{PKG_DESTINATION}/config/environments/test.rb" end -task :copy_generators do - mkdir_p File.join(PKG_DESTINATION, 'script/generators') - - GENERATORS.each do |dir| - cp_r File.join('generators', dir), File.join(PKG_DESTINATION, 'script', 'generators', dir) - end -end - task :copy_binfiles do BIN_FILES.each do |file| dest_file = File.join(PKG_DESTINATION, 'script', file) |