Currently, I am working on building RESTful web service in Rails. I am looking for some ways to build a good documentation in my Rails RESTful web service. I found some ways to do it:

  • Wiki like Twitter API
  • RDoc
  • WADL (I'm not sure if anyone is currently using it?)

Could anyone gives any recommendations?

link|improve this question

63% accept rate
Documentation in which way? Are you talking about documenting the code of your rails application? – txwikinger Aug 18 '09 at 13:51
I'm talking about documenting api that lets outside others developers be able to build on top the api. – Samnang Aug 24 '09 at 11:31
feedback

2 Answers

up vote -3 down vote accepted

If you mean that you want documentation to be generated for every URI that your routes have made available, then you are not following the constraints of REST. A RESTful API can only have your entry-point URI. Descriptions of your media types show how to discover other resources via URIs embedded in the hypertext of your responses. So, there's no automated way to do this.

See Sun Cloud API for a great example.

link|improve this answer
If you don't care about REST though, there are automated ways to generate docs for your URLs... – aehlke Jan 8 '11 at 0:47
feedback

Are you saying you don't like the default output of these options?

If so, take a look at hanna or sdoc which will 'beautify' your rdoc. Cheers.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.