Added lib/ to the directories that will get application docs generated [DHH]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4373 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson
2006-05-28 23:05:08 +00:00
parent ea51d72edb
commit d84ba8b8a9
2 changed files with 3 additions and 0 deletions

View File

@@ -1,5 +1,7 @@
*SVN*
* Added lib/ to the directories that will get application docs generated [DHH]
* Add observer generator. Closes #5167. [francois.beausoleil@gmail.com]
* Session migration generator obeys pluralize_table_names. #5145 [james.adam@gmail.com]

View File

@@ -6,6 +6,7 @@ namespace :doc do
rdoc.options << '--line-numbers' << '--inline-source'
rdoc.rdoc_files.include('doc/README_FOR_APP')
rdoc.rdoc_files.include('app/**/*.rb')
rdoc.rdoc_files.include('lib/**/*.rb')
}
desc "Generate documentation for the Rails framework"