diff options
author | Xavier Noria <fxn@hashref.com> | 2010-06-16 22:39:13 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2010-06-16 22:39:13 +0200 |
commit | 2aa4e5f3fab6e0625f5f52f84518d16f23c69346 (patch) | |
tree | 744aace5c42860d51ce019524674b3c9b9248ff8 /Rakefile | |
parent | 01f3f0dbae3e5ecfd18109a0f2ec37ed0d767a8e (diff) | |
download | rails-2aa4e5f3fab6e0625f5f52f84518d16f23c69346.tar.gz rails-2aa4e5f3fab6e0625f5f52f84518d16f23c69346.tar.bz2 rails-2aa4e5f3fab6e0625f5f52f84518d16f23c69346.zip |
pdoc tasks publishe APIs in api.rubyonrails.org
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -128,7 +128,7 @@ end desc "Publish API docs for Rails as a whole and for each component" task :pdoc => :rdoc do require 'rake/contrib/sshpublisher' - Rake::SshDirPublisher.new("wrath.rubyonrails.org", "public_html/api", "doc/rdoc").upload + Rake::SshDirPublisher.new("rails@api.rubyonrails.org", "public_html/api", "doc/rdoc").upload PROJECTS.each do |project| system %(cd #{project} && #{$0} pdoc) end |