diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2007-10-05 04:44:04 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2007-10-05 04:44:04 +0000 |
commit | 0068a8a1d8fb11e4c460e4a6132bf9a6642eaa65 (patch) | |
tree | 261c65a23cddfb0dac1ddc4f68fdb0157610146a /railties/Rakefile | |
parent | d0755b981470901dc644550f1857f48e7bae6e8a (diff) | |
download | rails-0068a8a1d8fb11e4c460e4a6132bf9a6642eaa65.tar.gz rails-0068a8a1d8fb11e4c460e4a6132bf9a6642eaa65.tar.bz2 rails-0068a8a1d8fb11e4c460e4a6132bf9a6642eaa65.zip |
Remember these for the next release
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7743 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/Rakefile')
-rw-r--r-- | railties/Rakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/Rakefile b/railties/Rakefile index 04a1162c74..51469b30ad 100644 --- a/railties/Rakefile +++ b/railties/Rakefile @@ -260,12 +260,12 @@ desc "Generate documentation for the framework and for the empty application" task :generate_documentation => [ :generate_app_doc, :generate_rails_framework_doc ] task :generate_rails_framework_doc do - system %{cd #{PKG_DESTINATION}; rake apidoc} + system %{cd #{PKG_DESTINATION}; rake doc:rails} end task :generate_app_doc do File.cp "doc/README_FOR_APP", "#{PKG_DESTINATION}/doc/README_FOR_APP" - system %{cd #{PKG_DESTINATION}; rake appdoc} + system %{cd #{PKG_DESTINATION}; rake doc:app} end Rake::RDocTask.new { |rdoc| |