-
Notifications
You must be signed in to change notification settings - Fork 2
/
reynard.gemspec
36 lines (31 loc) · 920 Bytes
/
reynard.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
36
# frozen_string_literal: true
require File.expand_path('lib/reynard/version', __dir__)
Gem::Specification.new do |spec|
spec.name = 'reynard'
spec.version = Reynard::VERSION
spec.authors = [
'Manfred Stienstra'
]
spec.email = [
'manfred@fngtps.com'
]
spec.summary = <<-SUMMARY
Minimal OpenAPI client.
SUMMARY
spec.description = <<-DESCRIPTION
Reynard is an OpenAPI client for Ruby. It operates directly on the OpenAPI specification without
the need to generate any source code.
DESCRIPTION
spec.homepage = 'https://github.com/Manfred/reynard'
spec.license = 'MIT'
spec.files = Dir.glob('lib/**/*') + [
'LICENSE',
'README.md'
]
spec.require_paths = ['lib']
spec.required_ruby_version = '> 3.1'
spec.add_dependency 'multi_json'
spec.add_dependency 'net-http-persistent'
spec.add_dependency 'rack'
spec.metadata = { 'rubygems_mfa_required' => 'true' }
end