swagger-blocks
swagger-blocks copied to clipboard
Define and serve live-updating Swagger JSON for Ruby apps.
Hi Please could you tag and/or release v3.0.0? Thanks Jon
Hello thanks for this awesome gem! I'm having an issue when trying to define the schema following jsonapi spec, particularly with the "included" array where someone can specify objects related...
what would be the equivalent in swagger-blocks ``` extension: type: array items: oneOf: - $ref: '#/definitions/Race' - $ref: '#/definitions/Ethnicity' ``` I've tried ``` property :extension do key :type, :array items...
I'm using swagger-blocks to document my API. When attempting to execute I get an error because only the last parameter listed is sent in the curl request. **app/controllers/apidocs_controller.rb** ```ruby parameter...
I could not find support for `anyOf` feature of swagger 2.0 specification. Is that missing?
# # PLEASE READ THIS BEFORE FILING AN ISSUE: # https://github.com/fotinakis/swagger-blocks/#filing-issues # Hi, In the Readme you say that you support any Ruby framework but there's only documentation for Rails....
Added clearer setup instructions using information from issue #54
Right now it seems that swagger-blocks only supports security definitions for the OpenAPI ApiKeyAuth and OAuth2 authentication. A very common type of authentication is BearerAuth (a bearer token in an...
Hello Team, I'm using swagger::blocks in my rails application. For any new endpoint in my rails controller, I'm annotating the endpoint with swagger_path declarations along with required parameters. At swagger...