Out of the box, running rake appdoc yields (on Win2K Pro):
(in W:/depot_final)
rm -r doc/app
rdoc -o doc/app --line-numbers --inline-source --title 'Rails Application Documentation' -T 'html' doc/README_FOR_APP app/controllers/admin_controller.rb app/controllers/application.rb app/controllers/login_controller.rb app/controllers/store_controller.rb app/helpers/admin_helper.rb app/helpers/application_helper.rb app/helpers/login_helper.rb app/helpers/store_helper.rb app/models/cart.rb app/models/line_item.rb app/models/order.rb app/models/product.rb app/models/user.rb
rake aborted!
undefined method `exitstatus' for nil:NilClass
Just running the rdoc command with all of the options and the entire list of files fails, yeilding:
option requires an argument -- T
For help on options, try 'rdoc --help'
Adding rdoc.template = nil to the rake task removes the -T 'html' option that the rdoc command chokes on. The rdoc command can run now without this option, but it will only work on the README_FOR_APP or the files matching app/**/*.rb, but not both. The rake appdoc call still yields the original `exitstatus' for nil:nilClass error.
Email sent to Jim (Rake) and Dave (RDoc) to see if they have any wisdom to apply to the problem.