creating Rdoc for a rails app -
I want to generate a document for my Rail (2.3.8) project When I tried
Rack Doctor: Rail Rack Doctor: Reill This creates documentation for all classes including standard Ruby classes and all ruby files in the vendor The directory (plugins etc ..)
- App folder (all models, controllers, and views) How can I create only rdoc documents for Ruby classes,
- Config folder
- Lib Folder
I call it my address Added to L;
RDoc :: Task.New: rdoc do | Rdoc | Rdoc.main = "README.rdoc" rdoc.rdoc_files.include ("README.rdoc", "Doctor / * .rdoc", "App / ** / * .rb", "Lib / * .rb", "Config /**/*.rb ") to meet the needs of #change, rdoc.title =" app documentation "rdoc.options & lt; & Lt; "--all" end then run;
, But I think it does the same thing.
Comments
Post a Comment