about summary refs log tree commit homepage
path: root/Rakefile
diff options
context:
space:
mode:
authorevanweaver <evanweaver@19e92222-5c0b-0410-8929-a290d50e31e9>2007-10-27 09:11:45 +0000
committerevanweaver <evanweaver@19e92222-5c0b-0410-8929-a290d50e31e9>2007-10-27 09:11:45 +0000
commit2c8112033ef6ddf3c57a6c281129322ea15858a2 (patch)
tree81e7ae8c4d35c917c365bf54bb0645c1bee674d4 /Rakefile
parentdd5986eed763e7d62a8412e8d0287aee5f28aefd (diff)
downloadunicorn-2c8112033ef6ddf3c57a6c281129322ea15858a2.tar.gz
git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@801 19e92222-5c0b-0410-8929-a290d50e31e9
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Rakefile b/Rakefile
index e46e89b..c86c753 100644
--- a/Rakefile
+++ b/Rakefile
@@ -7,7 +7,7 @@ e = Echoe.new("mongrel") do |p|
   p.summary = "A small fast HTTP library and server that runs Rails, Camping, Nitro and Iowa apps."
   p.author ="Zed A. Shaw"
   p.clean_pattern = ['ext/http11/*.{bundle,so,o,obj,pdb,lib,def,exp}', 'ext/http11/Makefile', 'pkg', 'lib/*.bundle', '*.gem', 'site/output', '.config', 'lib/http11.jar', 'ext/http11_java/classes']
-  p.rdoc_pattern = ['README', 'LICENSE', 'COPYING', 'lib/**/*.rb', 'doc/**/*.rdoc', 'ext/http11/http11.c']
+  p.rdoc_pattern = ['README', 'LICENSE', 'COPYING', 'lib/**/*.rb', 'doc/**/*.rdoc']
   p.ignore_pattern = /^(pkg|site|projects|doc|log)|CVS|\.log/
   p.ruby_version = '>= 1.8.4'
   p.dependencies = ['gem_plugin >=0.2.3', 'cgi_multipart_eof_fix >=2.4']
@@ -209,13 +209,13 @@ namespace :site do
   
   desc "Upload the rdocs"
   task :rdoc => [:doc] do
-    sh "rsync -azv doc/* rubyforge.org:/var/www/gforge-projects/mongrel/rdoc/"
-    sh "cd projects/gem_plugin; rake site"
+    sh "rsync -azv --no-perms --no-times doc/* rubyforge.org:/var/www/gforge-projects/mongrel/rdoc/"
+    sh "cd projects/gem_plugin; rake site:rdoc"
   end
   
   desc "Upload the coverage report"
   task :coverage => [:rcov] do
-    sh "rsync -azv test/coverage/* rubyforge.org:/var/www/gforge-projects/mongrel/coverage/"
+    sh "rsync -azv --no-perms --no-times test/coverage/* rubyforge.org:/var/www/gforge-projects/mongrel/coverage/"
   end
   
   desc "Upload the website, the rdocs, and the coverage report"