mirror of
https://github.com/ditkrg/rswag.git
synced 2026-01-22 22:06:43 +00:00
Fixes #333 Mentioning OpenAPI in the gemspec allows users on rubygems.org to find this gem easily. Those who are still looking for Swagger tools will also continue to find the gem, since I've mentioned that OpenAPI used to be called Swagger. Signed-off-by: Andrew Kofink <akofink@redhat.com>
22 lines
986 B
Ruby
22 lines
986 B
Ruby
# frozen_string_literal: true
|
|
|
|
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
|
|
|
|
# Describe your gem and declare its dependencies:
|
|
Gem::Specification.new do |s|
|
|
s.name = 'rswag'
|
|
s.version = ENV['TRAVIS_TAG'] || '0.0.0'
|
|
s.authors = ['Richie Morris', 'Greg Myers', 'Jay Danielian']
|
|
s.email = ['domaindrivendev@gmail.com']
|
|
s.homepage = 'https://github.com/rswag/rswag'
|
|
s.summary = 'OpenAPI (formerly named Swagger) tooling for Rails APIs'
|
|
s.description = 'Generate beautiful API documentation, including a UI to explore and test operations, directly from your rspec integration tests. OpenAPI 2 and 3 supported. More about the OpenAPI initiative here: http://spec.openapis.org/'
|
|
s.license = 'MIT'
|
|
|
|
s.files = Dir['{lib}/**/*'] + [ 'MIT-LICENSE' ]
|
|
|
|
s.add_dependency 'rswag-specs', ENV['TRAVIS_TAG'] || '0.0.0'
|
|
s.add_dependency 'rswag-api', ENV['TRAVIS_TAG'] || '0.0.0'
|
|
s.add_dependency 'rswag-ui', ENV['TRAVIS_TAG'] || '0.0.0'
|
|
end
|