forked from savonrb/httpi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
httpi.gemspec
35 lines (28 loc) · 1.27 KB
/
httpi.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
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'httpi/version'
Gem::Specification.new do |s|
s.name = 'httpi'
s.version = HTTPI::VERSION
s.authors = ['Daniel Harrington', 'Martin Tepper']
s.email = '[email protected]'
s.homepage = "https://github.com/savonrb/httpi"
s.summary = "Common interface for Ruby's HTTP libraries"
s.description = s.summary
s.metadata = { 'bug_tracker_uri' => 'https://github.com/savonrb/httpi/issues',
'changelog_uri' => 'https://github.com/savonrb/httpi/blob/master/CHANGELOG.md',
'source_code_uri' => s.homepage,
'wiki_uri' => 'https://github.com/savonrb/httpi/wiki',
'documentation_uri' => 'https://www.rubydoc.info/gems/httpi' }
s.required_ruby_version = '>= 2.3'
s.license = 'MIT'
s.add_dependency 'rack', '< 3'
s.add_development_dependency 'rubyntlm', '~> 0.3.2'
s.add_development_dependency 'rake', '~> 13.0'
s.add_development_dependency 'rspec', '~> 3.5'
s.add_development_dependency 'mocha', '~> 0.13'
s.add_development_dependency 'puma', '~> 5.0'
s.add_development_dependency 'webmock'
s.files = `git ls-files`.split("\n")
s.require_path = 'lib'
end