RocketDocs is a automatic documentation generator for APIs.
It is intended to be used with 🚀 rocket_pants based APIs but it can also be used as a standalone generator through rake tasks.
This project was mostly inspired by the 🍇 grape-swagger project.
All documentation is done in comments so that your code doesn't get littered with code that has no functional purpose, thus making your code more readable.
- About
- Installation
- With RocketPants
- With Rake
- Configuration
- Usage
- Keywords 1. DOC 2. PARAMS 3. URL 4. GET, PUT, POST, PATCH, DELETE
- Rake task
- Differences between engine and rake task use
- Code Examples
- Contributing
- License
# In your Gemfile
gem 'rocket_docs'
If you are using rocket_pants you only have to mount the engine in your routes file.
# In your config/routes.rb
mount RocketDocs::Engine => '/api-doc'
The gem also adds two new rake tasks for generating documentation as static html or markdown files
# For HTML files
rake rocket_docs:generate[version_name, input_files, output_folder]
# Alias
rake rocket_docs:gen[version_name, input_files, output_folder]
# For MARKDOWN files
rake rocket_docs:generate_markdown[version_name, input_files, output_folde]
# Aliases
rake rocket_docs:generate_md[version_name, input_files, output_folde]
rake rocket_docs:gen_md[version_name, input_files, output_folde]
Basically no configuration is needed. By default every api route from your routes file will be used when generating the documentation.
It's important to note that only methods that are accessible (are used in the routes file) will get documented.
To change the title or description of the generated API you can ether use an initializer or the engine setup method.
Initializer:
A config/initializers/rocket_docs.rb
has to be created!
# In your config/routes.rb
mount RocketDocs::Engine => '/api-doc'
# In config/initializers/rocket_docs.rb
RocketDocs.config do |docs|
docs.title = 'Custom API title'
docs.description = 'Custom API description'
end
Engine setup:
# In your config/routes.rb
mount (
RocketDocs::Engine.setup do |docs|
docs.url = '/api-doc'
docs.title = 'Custom API title'
docs.description = 'Custom API description'
end
)
If you are using rocket_pants, after you mount the engine in your routes file the only thing you have to do is write some comments in front of the method you want to document.
Remeber indentation is important!
There are a few keywords to help you: DOC
, PARAMS
, URL
, GET
, PUT
, POST
, PATCH
, DELETE
It doesn't matter if the words are lower or upper case.
DOC
is used to define documentation, text that describes the action.
Example:
# Doc
# This action lists all posts
#
def index
...
end
PARAMS
is used to define which parameters the action accepts.
If you are using rocket_pants this will be automatically populated.
Note that nested parameters are allowed.
Example:
# Doc
# This action displays a single post
#
# Params
# id: integer (the post's identifier)
# additional
# author_id: integer
# release_date: date
#
def show
...
end
URL
is used to define an action's URL. Parameters should be surounded by curly braces. If you are using rocket_pants this will be automatically populated.
Example:
# Doc
# This action displays a single post
# URL
# /post/{id}
# Params
# id: integer (the post's identifier)
#
def show
...
end
GET
, PUT
, POST
, PATCH
, DELETE
are used to define method specifics.
# GET
# Doc
# This action returns a users current location
# Params
# id: integer (the user's identifier)
# POST
# Doc
# This action sets a users location
# Params
# id: integer (the user's identifier)
# lon: float
# lat: gloat
def user_location
...
end
For the above example you could also write:
# Doc
# This action returns a users current location
# Params
# id: integer (the user's identifier)
#
# POST
# Doc
# This action sets a users location
# Params
# id: integer (the user's identifier)
# lon: float
# lat: gloat
def user_location
...
end
This would set the DOC
, PARAMS
and URL
values as default values for all methods except for POST
which has it's own DOC
and PARAMS
values.
The rake tasks accept three arguments. A version name, a list of file paths separated by spaces and an output folder. The output folder is optional, if no output folder is defined then it will default to route_to_your_rails_app/public/system/documentation
Example:
rake rocket_docs:generate['Legacy','app/controllers/api/v1/people_controller.rb app/controllers/api/v2/posts_controller.rb','public/system/api-docs']
This would generate a Legacy.html
file in your public/system/api-docs
folder and you could access it by going to http://localhost:3000/system/api-docs/Legacy.html
There is a difference between using the rake tasks and the engine.
When using the engine in combination with rocketpants there is no need to define to which methods the action responds to and what it's URL is. So if you have an action that responds to both GET
and POST
requests you only have to write the following and it would automatically detect to which methods the action responds and what it's URL is.
# Doc
# This action returns a users current location
# Params
# id: integer (the user's identifier)
def user_location
...
end
But the rake tasks are not able to determine the URL and to which methods an action responds so they have to be explicitly specified! To get the same result as in the above example you would have to write:
# URL
# /users/location?id={id}
# Doc
# This action returns a users current location
# Params
# id: integer (the user's identifier)
# GET
# POST
def user_location
...
end
Note: If no new value was defined in a method specific block then the default will be used
Currently the best example you can look at is the test_app located in the specs
folder. You can even start the app and experiment a little bit.
If you want to help this project out please fell free to:
- Fork this repo
- Make changes
- Write tests
- Issue a pull request with an explanation
Or open an issue here.
This project rocks and uses MIT-LICENSE.