views:

72

answers:

1

Hi to all. Give me an example, that's you can describe as "well documented project on Rails", or "best practices of making documentation for Rails project" (with link to github, or other same site, if it possible).

And, what tools do you prefer to use for writing documentation of your project?

+2  A: 

Rails provides a bunch of rake tasks to generate a full Rdoc documentation for the project. You can view them with

rake -T doc

The main task is

rake doc:app

This requires your codebase to expose meaningful comments and usage information.

Simone Carletti
yes, this is standard way for Rails. Bat, may be anybody use else tools? Or you have an example of really well documented project?
potapuff