-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhapi.gemspec
More file actions
23 lines (23 loc) · 926 Bytes
/
hapi.gemspec
File metadata and controls
23 lines (23 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Gem::Specification.new do |s|
s.name = 'hapi'
s.version = '2.0.0'
s.summary = 'hapi'
s.description = ''
s.authors = ['Marian Mazarovici']
s.email = 'marian@vonq.com'
s.homepage = 'https://vonq.com'
s.license = 'MIT'
s.add_dependency('logging', '~> 2.3')
s.add_dependency('faraday', '~> 2.0', '>= 2.0.1')
s.add_dependency('faraday-follow_redirects', '~> 0.2')
s.add_dependency('faraday-multipart', '~> 1.0')
s.add_dependency('faraday-gzip', '~> 0.1')
s.add_dependency('faraday-retry', '~> 1.0')
s.add_dependency('certifi', '~> 2018.1', '>= 2018.01.18')
s.add_dependency('faraday-http-cache', '~> 2.2')
s.add_development_dependency('minitest', '~> 5.14', '>= 5.14.1')
s.add_development_dependency('minitest-proveit', '~> 1.0')
s.required_ruby_version = ['>= 2.6']
s.files = Dir['{bin,lib,man,test,spec}/**/*', 'README*', 'LICENSE*']
s.require_paths = ['lib']
end