Sha256: e661fa9a6782a79c7b58cbbc09f9f5d02d7c86aa7c8dea0f06572b815c4e16fe

Contents?: true

Size: 802 Bytes

Versions: 3

Compression:

Stored size: 802 Bytes

Contents

# frozen_string_literal: true

$LOAD_PATH.push File.expand_path('lib', __dir__)
require 'grape-swagger/version'

Gem::Specification.new do |s|
  s.name        = 'grape-swagger'
  s.version     = GrapeSwagger::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ['LeFnord', 'Tim Vandecasteele']
  s.email       = ['pscholz.le@gmail.com', 'tim.vandecasteele@gmail.com']
  s.homepage    = 'https://github.com/ruby-grape/grape-swagger'
  s.summary     = 'Add auto generated documentation to your Grape API that can be displayed with Swagger.'
  s.license     = 'MIT'

  s.required_ruby_version = '>= 2.5'
  s.add_runtime_dependency 'grape', '~> 1.3'

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec}/*`.split("\n")
  s.require_paths = ['lib']
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
grape-swagger-1.4.2 grape-swagger.gemspec
grape-swagger-1.4.1 grape-swagger.gemspec
grape-swagger-1.4.0 grape-swagger.gemspec