I would like to generate a documentation to my rails (2.3.8) project. When I tried
rake doc:rails
rake doc:rerails
It creates documentation for all the classes including standard ruby classes and all the ruby files in vendor directory (plugins etc..)
How can I create rdoc documentation only for ruby classes, files in following directories
- app folder (all the models, controllers and views)
- config folder
- lib folder
You can use
rake doc:app
to generate documentation for the app.Quoting from section 2.4 of Rails guides:
I added this to my Rakefile;
Then run;
Check out the RDoc::Task docs for more http://rdoc.rubyforge.org/RDoc/Task.html
Admittedly I am on a rails 3 app, but I think this works the same.