-
Notifications
You must be signed in to change notification settings - Fork 8
/
faraday-follow_redirects.gemspec
35 lines (26 loc) · 1.14 KB
/
faraday-follow_redirects.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/faraday/follow_redirects/version'
Gem::Specification.new do |spec|
spec.name = 'faraday-follow_redirects'
spec.version = Faraday::FollowRedirects::VERSION
spec.authors = ['Sebastian Cohnen']
spec.email = ['[email protected]']
spec.summary = 'Faraday 1.x and 2.x compatible extraction of FaradayMiddleware::FollowRedirects'
spec.description = <<~DESC
Faraday 1.x and 2.x compatible extraction of FaradayMiddleware::FollowRedirects.
DESC
spec.license = 'MIT'
github_uri = 'https://github.com/tisba/faraday-follow-redirects'
spec.homepage = github_uri
spec.metadata = {
'bug_tracker_uri' => "#{github_uri}/issues",
'changelog_uri' => "#{github_uri}/blob/v#{spec.version}/CHANGELOG.md",
'documentation_uri' => "http://www.rubydoc.info/gems/#{spec.name}/#{spec.version}",
'homepage_uri' => spec.homepage,
'rubygems_mfa_required' => 'true',
'source_code_uri' => github_uri
}
spec.files = Dir['lib/**/*', 'README.md', 'LICENSE.md', 'CHANGELOG.md']
spec.required_ruby_version = ['>= 2.6', '< 4']
spec.add_dependency 'faraday', '>= 1', '< 3'
end