aboutsummaryrefslogtreecommitdiffstats
path: root/railties/Rakefile
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2004-12-16 15:45:55 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2004-12-16 15:45:55 +0000
commitb8f8776f0cffc1b73719f16513a5721d77b19186 (patch)
treeb02a65c7c9e37a8f031fecbd92b19a8a7afc4bd9 /railties/Rakefile
parent4fb6ed4c1c35ba055df36602e3d75b68e7fcb212 (diff)
downloadrails-b8f8776f0cffc1b73719f16513a5721d77b19186.tar.gz
rails-b8f8776f0cffc1b73719f16513a5721d77b19186.tar.bz2
rails-b8f8776f0cffc1b73719f16513a5721d77b19186.zip
Renamed public/dispatch.servlet to script/server -- it wasn't really dispatching anyway as its delegating calls to public/dispatch.rb
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@186 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/Rakefile')
-rw-r--r--railties/Rakefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/railties/Rakefile b/railties/Rakefile
index 088bfbe74e..dc3f7a9679 100644
--- a/railties/Rakefile
+++ b/railties/Rakefile
@@ -21,7 +21,7 @@ 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 envcon )
+BIN_FILES = %w( generate breakpointer envcon server )
GENERATORS = %w( controller mailer model scaffold )
VENDOR_LIBS = %w( actionpack activerecord actionmailer railties )
@@ -109,8 +109,6 @@ task :copy_dispatches do
cp "dispatches/dispatch.fcgi", "#{PKG_DESTINATION}/public/dispatch.fcgi"
chmod 0755, "#{PKG_DESTINATION}/public/dispatch.fcgi"
- cp "dispatches/dispatch.servlet", "#{PKG_DESTINATION}/public/dispatch.servlet"
-
cp "bin/envcon", "#{PKG_DESTINATION}/script/envcon"
chmod 0755, "#{PKG_DESTINATION}/script/envcon"
end