Defect #2011
Building the RDoc-documentation halts on init.rb.
Status: | Closed | Start date: | 2008-10-09 | |
---|---|---|---|---|
Priority: | Low | Due date: | ||
Assignee: | % Done: | 100% | ||
Category: | - | |||
Target version: | 0.8 | |||
Resolution: | Fixed | Affected version: |
Description
As discussed on IRC;
When building the RDoc-documentation using (for example) "rake doc:app
", rake freezes completely on an instance of the file init.rb.
Cause of this:
Edavis10 wrote:
It's from the plugin generator that was added recently.
Associated revisions
Renamed the .rb files in the plugin_generator to end in .erb. The .rb was
causing rdoc to try to document them and fail.
- Updated the generator's manifest to use the new files
- Renamed template README to README.rdoc
History
#1
Updated by Eric Davis over 14 years ago
- Status changed from New to Closed
- Target version set to 0.8
- % Done changed from 0 to 100
- Resolution set to Fixed
This was because the plugin generator's template file ended in .rb
and init.rb
caused rdoc to error. I renamed the files to end in .rb.erb
in r1949 so the rdocs will now build again. Thank you for the bug report.