8

I have an API only rails app which needs documentation for frontend developers. And it's my first experience with it.

What tool do you use for this purpose? Note that I am using rails 5 API and not Grape.

I tested Apipie, swagger-blocks, and swagger-docs gems, but they are obsolete or buggy. There must be a better option!
Any recommendations respected

MalekMFS
  • 180
  • 2
  • 13

2 Answers2

5

Well, I found Slate one of the best out there.

MalekMFS
  • 180
  • 2
  • 13
2

did you try RSpec Api Documentation? https://github.com/zipmark/rspec_api_documentation

There is an article on using it with codeship here: https://blog.codeship.com/producing-documentation-for-your-rails-api/

Paul Harker
  • 166
  • 2
  • 14
  • Thanks for your response. I never used rspec before but wrote tests with simple rails test unit. Do you still prefer it to me? Can i run it fast? – MalekMFS Feb 09 '18 at 09:16