diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2005-10-14 18:58:07 +0000 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2005-10-14 18:58:07 +0000 |
commit | 00656979fed99d4d16eefc795067a576ab1a1a91 (patch) | |
tree | f26ccc6c445e3a8432ca6f589be64d53cb32645f /railties/Rakefile | |
parent | 32021552125544d7cc2f548b1684a9f476845d58 (diff) | |
download | rails-00656979fed99d4d16eefc795067a576ab1a1a91.tar.gz rails-00656979fed99d4d16eefc795067a576ab1a1a91.tar.bz2 rails-00656979fed99d4d16eefc795067a576ab1a1a91.zip |
r3619@sedna: jeremy | 2005-10-14 14:41:24 -0700
move scripts
r3622@sedna: jeremy | 2005-10-14 14:54:48 -0700
remove script/perform and script/process in favor of script/perform/profile, etc.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2587 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/Rakefile')
-rw-r--r-- | railties/Rakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/Rakefile b/railties/Rakefile index a2c44876e1..a0b1f5b325 100644 --- a/railties/Rakefile +++ b/railties/Rakefile @@ -28,7 +28,7 @@ RUBY_FORGE_USER = "webster132" # end -BASE_DIRS = %w( app config/environments components db doc log lib lib/tasks public script test vendor vendor/plugins ) +BASE_DIRS = %w( app config/environments components db doc log lib lib/tasks public script script/perform script/process test vendor vendor/plugins ) 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 ) @@ -38,7 +38,7 @@ HTML_FILES = %w( 404.html 500.html index.html robots.txt favicon.ico javascripts/prototype.js javascripts/scriptaculous.js javascripts/effects.js javascripts/dragdrop.js javascripts/controls.js javascripts/util.js javascripts/slider.js ) -BIN_FILES = %w( breakpointer console destroy generate perform process runner server ) +BIN_FILES = %w( breakpointer console destroy generate perform/benchmark perform/profile process/reaper process/spawner process/spinner runner server ) VENDOR_LIBS = %w( actionpack activerecord actionmailer activesupport actionwebservice railties ) |