-
Notifications
You must be signed in to change notification settings - Fork 12
/
faraday-http.gemspec
30 lines (23 loc) · 1.04 KB
/
faraday-http.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'faraday/http/version'
Gem::Specification.new do |spec|
spec.name = 'faraday-http'
spec.version = Faraday::Http::VERSION
spec.authors = ['iMacTia']
spec.email = ['[email protected]']
spec.summary = 'Faraday Adapter for HTTP.rb'
spec.description = 'Faraday Adapter for HTTP.rb'
spec.homepage = 'https://github.com/lostisland/faraday-http'
spec.license = 'MIT'
spec.required_ruby_version = '>= 2.6'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/lostisland/faraday-http'
spec.metadata['changelog_uri'] = 'https://github.com/lostisland/faraday-http/releases'
spec.metadata['rubygems_mfa_required'] = 'true'
spec.files = Dir.glob('lib/**/*') + %w[README.md LICENSE]
spec.require_paths = ['lib']
spec.add_dependency 'faraday', '~> 2.5'
spec.add_dependency 'http', '>= 4.0', '< 6'
end