ramlo
ramlo copied to clipboard
Documentation generator for RAML 1.0
For RAML **1.0** APIs, in `ramlo\src\modules\api.js:328` ``` apiExample = { response: body.toJSON().example, code: response.code().value() }; ``` the _apiExample.response_ returns an **object**, so the following code ``` apiExample.response = apiExample.response &&...
Consider an example: **/bar:** **/foo:** description: Endpoint /bar/foo **/bar/foo:** description: second endpoint /bar/foo It results in generating two endpoint nodes with identical URIs. Coexistence of such twin endpoints should be...
**v 0.2.1** String pattern constraints from schema are not included in docs: ``` "birthday": { "type": "string", "description": "Birthday date in format of mm-dd-yyyy", "pattern": "^[0-9]{2}-[0-9]{2}-[0-9]{4}$" } ``` ramlo result:...
**v 0.2.1** For JSON schema like this: ``` "gender": { "description": "User's gender", "type": "string", "enum": [ "male", "female", "unspecified" ] } ``` Ramlo produces this:  While raml2boot gives...
Tried to run this on my local and it didn't quite behave properly. After fixing these it worked.
### General - [ ] Check if documentation presented in console after command `ramlo --help` is complete. - [ ] Parse only files with extension *.raml and show error if...
Hello, I'm having the following issue on OSX: ``` rober@localhost:/docs $ ramlo -f my-api.raml env: node\r: No such file or directory ``` I have tried installing ramlo as a regular...
I think your documentation tool for RAML is currently the best one for RAML 1.0. Unfortunately I came across one issue with `examples:`: Instead of providing just one example, I...
