aboutsummaryrefslogtreecommitdiffstats
path: root/railties/Rakefile
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-07-04 19:06:50 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-07-04 19:06:50 +0000
commit6e319ccce27d0855025eb69cb5224bd81cb41601 (patch)
tree974908f4dd3e4b63620623de7b5a6f75ad69e16f /railties/Rakefile
parent5dedf62dda862d178171da68f6a3d7e5417ae1b7 (diff)
downloadrails-6e319ccce27d0855025eb69cb5224bd81cb41601.tar.gz
rails-6e319ccce27d0855025eb69cb5224bd81cb41601.tar.bz2
rails-6e319ccce27d0855025eb69cb5224bd81cb41601.zip
Added an EXPERIMENTAL gateway.cgi for getting high-speed performance through vanilla CGI using a long-running, DRb-backed server in the background (using script/listener and script/tracker) #1603 [Nicholas Seckar]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1674 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/Rakefile')
-rw-r--r--railties/Rakefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/railties/Rakefile b/railties/Rakefile
index 28cc23d84b..dc2b7a80f8 100644
--- a/railties/Rakefile
+++ b/railties/Rakefile
@@ -26,7 +26,7 @@ TEST_DIRS = %w( fixtures unit functional mocks mocks/development mocks/test )
LOG_FILES = %w( server.log development.log test.log production.log )
HTML_FILES = %w( 404.html 500.html index.html favicon.ico javascripts/prototype.js javascripts/effects.js javascripts/dragdrop.js javascripts/controls.js )
-BIN_FILES = %w( generate destroy breakpointer console server update runner profiler benchmarker )
+BIN_FILES = %w( generate destroy breakpointer console server update runner profiler benchmarker listener tracker )
VENDOR_LIBS = %w( actionpack activerecord actionmailer activesupport actionwebservice railties )
@@ -135,6 +135,9 @@ task :copy_dispatches do
copy_with_rewritten_ruby_path("dispatches/dispatch.fcgi", "#{PKG_DESTINATION}/public/dispatch.fcgi")
chmod 0755, "#{PKG_DESTINATION}/public/dispatch.fcgi"
+
+ copy_with_rewritten_ruby_path("dispatches/gateway.cgi", "#{PKG_DESTINATION}/public/gateway.cgi")
+ chmod 0644, "#{PKG_DESTINATION}/public/gateway.cgi"
end
task :copy_html_files do