Include Action Web Service and Active Support in the documentation

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@797 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2005-02-24 13:36:25 +00:00
parent 99fca6330d
commit b53f94d2bf
1 changed files with 5 additions and 1 deletions

View File

@ -75,7 +75,6 @@ Rake::RDocTask.new("apidoc") { |rdoc|
rdoc.options << '--line-numbers --inline-source'
rdoc.rdoc_files.include('README')
rdoc.rdoc_files.include('CHANGELOG')
rdoc.rdoc_files.include('vendor/railties/lib/breakpoint.rb')
rdoc.rdoc_files.include('vendor/railties/CHANGELOG')
rdoc.rdoc_files.include('vendor/railties/MIT-LICENSE')
rdoc.rdoc_files.include('vendor/activerecord/README')
@ -89,6 +88,11 @@ Rake::RDocTask.new("apidoc") { |rdoc|
rdoc.rdoc_files.include('vendor/actionmailer/README')
rdoc.rdoc_files.include('vendor/actionmailer/CHANGELOG')
rdoc.rdoc_files.include('vendor/actionmailer/lib/action_mailer/base.rb')
rdoc.rdoc_files.include('vendor/actionwebservice/README')
rdoc.rdoc_files.include('vendor/actionwebservice/ChangeLog')
rdoc.rdoc_files.include('vendor/actionwebservice/lib/action_web_service/**/*.rb')
rdoc.rdoc_files.include('vendor/activesupport/README')
rdoc.rdoc_files.include('vendor/activesupport/lib/active_support/**/*.rb')
}
desc "Report code statistics (KLOCs, etc) from the application"