Best practice for documenting a ROR application.

Hi

is there a method in particular?

Does IDE provide any features to do that?

thanks

RDoc is the standard method of Ruby documentation. The Pickaxe book has a chapter devoted to it. There's a lot that you can do with it, but to generate HTML documentation for your app, you can run `rake doc:app` from the app root. (I think.)

-Kyle