janrain / raml-fleece

Tool for converting RAML to HTML documentation
MIT License
9 stars 2 forks source link

Responses without bodies should render their descriptions #2

Closed byron-janrain closed 9 years ago

byron-janrain commented 9 years ago

For example, the following delete method on a resource should probably show the descriptive content.

#%RAML 0.8
title: Minimal RAML
/:
  delete:
    description: Destroy the resource and all resource-bindings
    responses:
      204:
        description: Successfully deleted the resource consistent.
      404:
        description: No resource exists for the specified ID