generated from lostisland/faraday-adapter-template
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
faraday-excon.gemspec
28 lines (21 loc) · 965 Bytes
/
faraday-excon.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
# frozen_string_literal: true
require_relative 'lib/faraday/excon/version'
Gem::Specification.new do |spec|
spec.name = 'faraday-excon'
spec.version = Faraday::Excon::VERSION
spec.authors = ['@geemus']
spec.email = ['geemus@gmail.com']
spec.summary = 'Faraday adapter for Excon'
spec.description = 'Faraday adapter for Excon'
spec.homepage = 'https://github.com/excon/faraday-excon'
spec.license = 'MIT'
spec.required_ruby_version = Gem::Requirement.new('>= 3.0.0')
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['rubygems_mfa_required'] = 'true'
spec.metadata['source_code_uri'] = 'https://github.com/excon/faraday-excon'
spec.metadata['changelog_uri'] = "https://github.com/excon/faraday-excon/releases/tag/v#{spec.version}"
spec.files = Dir.glob('lib/**/*') + %w[README.md LICENSE.md]
spec.require_paths = ['lib']
spec.add_dependency 'excon', '>= 1.0.0'
spec.add_dependency 'faraday', '>= 2.11.0', '< 3'
end