vote up 0 vote down star

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?

flag

32% accept rate
Documentation in which way? Are you talking about documenting the code of your rails application? – txwikinger Aug 18 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 at 11:31

2 Answers

vote up 1 vote down

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|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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