-
Notifications
You must be signed in to change notification settings - Fork 1
/
openapi_parameters.gemspec
35 lines (28 loc) · 1.33 KB
/
openapi_parameters.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# frozen_string_literal: true
require_relative 'lib/openapi_parameters/version'
Gem::Specification.new do |spec|
spec.name = 'openapi_parameters'
spec.version = OpenapiParameters::VERSION
spec.authors = ['Andreas Haller']
spec.email = ['[email protected]']
spec.summary = 'openapi_parameters is an OpenAPI aware parameter parser'
spec.description =
'This parses HTTP query/path/header/cookie parameters exactly as described in an OpenAPI API description.'
spec.homepage = 'https://github.com/ahx/openapi_parameters'
spec.required_ruby_version = '>= 3.1.0'
spec.licenses = ['MIT']
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/ahx/openapi_parameters'
spec.metadata[
'changelog_uri'
] = 'https://github.com/ahx/openapi_parameters/blob/main/CHANGELOG.md'
# Specify which files should be added to the gem when it is released.
spec.files = Dir['{lib}/**/*.rb', 'LICENSE.txt', 'README.md', 'CHANGELOG.md']
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_dependency 'rack', '>= 2.2'
# For more information and examples about making a new gem, check out our
# guide at: https://bundler.io/guides/creating_gem.html
spec.metadata['rubygems_mfa_required'] = 'true'
end