How to create documents for my models and controller in rails

I want to create documents for the models and controller of my application. Even for a rake task, any background task. Since I have thousands of lines of comments inside the code, an explanation of all the actions of the functions.

I do not need documents for the rails, so

  rake doc:rails 

useless to me.

Usecase is the developer’s internal detailed notes.

+5
source share
2 answers

Try using this rake command:

rake doc:app

Rdoc, . , , , .

+12

RDoc SourceForge, . RDoc GitHub.

https://github.com/rdoc/rdoc

+2

All Articles