aboutsummaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2008-06-18 22:00:09 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2008-06-18 23:17:02 -0700
commit81025b5808886289f54d698f73f4199c99223e7e (patch)
tree02ed8b3713a13d2369c47099483ecb7de72dda93 /Rakefile
parent88796ad75a6d84096ebfe90380102a90103cfcc3 (diff)
downloadrails-81025b5808886289f54d698f73f4199c99223e7e.tar.gz
rails-81025b5808886289f54d698f73f4199c99223e7e.tar.bz2
rails-81025b5808886289f54d698f73f4199c99223e7e.zip
fix toplevel pdoc task
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index e8ab0b2319..368f36e56c 100644
--- a/Rakefile
+++ b/Rakefile
@@ -76,6 +76,6 @@ desc "Publish API docs for Rails as a whole and for each component"
task :pdoc => :rdoc do
Rake::SshDirPublisher.new("wrath.rubyonrails.org", "public_html/api", "doc").upload
PROJECTS.each do |project|
- system %(cd #{project} && #{env} #{$0} #{task_name})
+ system %(cd #{project} && #{env} #{$0} pdoc)
end
end