-
Notifications
You must be signed in to change notification settings - Fork 150
/
httpi.gemspec
40 lines (32 loc) · 1.44 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
36
37
38
39
40
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 = '>= 3.0'
s.license = 'MIT'
s.add_dependency 'rack', '>= 2.0', '< 4'
s.add_dependency 'nkf'
s.add_dependency 'base64'
s.add_dependency 'mutex_m'
s.add_development_dependency 'rubyntlm', '~> 0.6.4'
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', '~> 6.0'
s.add_development_dependency 'webmock'
s.metadata["rubygems_mfa_required"] = "true"
s.files = Dir["lib/**/*"] + %w[CHANGELOG.md LICENSE README.md UPDATING.md]
s.require_path = 'lib'
end