diff options
-rwxr-xr-x | railties/fresh_rakefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/railties/fresh_rakefile b/railties/fresh_rakefile index 9dd1181bed..362708a589 100755 --- a/railties/fresh_rakefile +++ b/railties/fresh_rakefile @@ -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" |