generated from lostisland/faraday-adapter-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
faraday-em_http.gemspec
35 lines (26 loc) · 1.25 KB
/
faraday-em_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
31
32
33
34
35
# frozen_string_literal: true
require_relative 'lib/faraday/em_http/version'
Gem::Specification.new do |spec|
spec.name = 'faraday-em_http'
spec.version = Faraday::EmHttp::VERSION
spec.authors = ['@iMacTia']
spec.email = ['giuffrida.mattia@gmail.com']
spec.summary = 'Faraday adapter for Em::Http'
spec.description = 'Faraday adapter for Em::Http'
spec.homepage = 'https://github.com/lostisland/faraday-em_http'
spec.license = 'MIT'
spec.required_ruby_version = Gem::Requirement.new('>= 2.4.0')
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/lostisland/faraday-em_http'
spec.metadata['changelog_uri'] = 'https://github.com/lostisland/faraday-em_http'
spec.files = Dir.glob('lib/**/*') + %w[README.md LICENSE.md]
spec.require_paths = ['lib']
spec.add_runtime_dependency 'em-http-request', '>= 1.1'
spec.add_runtime_dependency 'faraday', '~> 2.0'
spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'simplecov', '~> 0.19.0'
spec.add_development_dependency 'multipart-parser', '~> 0.1.1'
spec.add_development_dependency 'webmock', '~> 3.4'
end