mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Exclude lib/actionpack.rb from rdoc
This commit is contained in:
parent
8692e1722e
commit
a61a2af6ed
1 changed files with 3 additions and 1 deletions
|
@ -54,7 +54,9 @@ Rake::RDocTask.new { |rdoc|
|
|||
rdoc.rdoc_files.include(ENV['DOC_FILES'].split(/,\s*/))
|
||||
else
|
||||
rdoc.rdoc_files.include('README', 'RUNNING_UNIT_TESTS', 'CHANGELOG')
|
||||
rdoc.rdoc_files.include(Dir['lib/**/*.rb'] - Dir['lib/*/vendor/**/*.rb'])
|
||||
rdoc.rdoc_files.include(Dir['lib/**/*.rb'] -
|
||||
Dir['lib/*/vendor/**/*.rb'] -
|
||||
['lib/actionpack.rb'])
|
||||
end
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue