Skip to content

ehowe/swagalicious

Repository files navigation

Swagalicious

This gem is an implementation of https://github.com/rswag/rswag/blob/master/rswag-specs that does not rely on Rails. Most of the code is a blatant copy/paste from that repo, most of the credit goes to them.

Currenty it does not implement any API or UI. In the application that is using this gem, we are using https://github.com/Redocly/redoc that is accessed through a rack middleware.

Installation

Add this line to your application's Gemfile:

gem 'swagalicious'

And then execute:

$ bundle install

Or install it yourself as:

$ gem install swagalicious

Usage

Add the following to your spec_helper.rb or add a new swagger_helper.rb

require 'swagalicious`

RSpec.configure do |c|
  c.swagger_root = "public/swagger_docs" # This is the relative path where the swagger docs will be output
  c.swagger_docs = {
    "path/to/swagger_doc.json" => {
      openapi:  "3.0.3",
      basePath: "/api/",
      version:  "v1",
      info:     {
        title: "Namespace for my API"
      },
      components: {
        securitySchemes: {
          apiKey: {
            type: :apiKey,
            name: "authorization",
            in:   :header,
          }
        }
      },
    }
  }
end

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/ehowe/swagalicious.

License

The gem is available as open source under the terms of the MIT License.

About

RSwag without Rails

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published