-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathasync-http-faraday.gemspec
More file actions
29 lines (22 loc) · 1000 Bytes
/
async-http-faraday.gemspec
File metadata and controls
29 lines (22 loc) · 1000 Bytes
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
require_relative 'lib/async/http/faraday/version'
Gem::Specification.new do |spec|
spec.name = "async-http-faraday"
spec.version = Async::HTTP::Faraday::VERSION
spec.authors = ["Samuel Williams"]
spec.email = ["samuel.williams@oriontransfer.co.nz"]
spec.summary = "Provides an adaptor between async-http and faraday."
spec.homepage = "https://github.com/socketry/async-http"
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency("async-http", "~> 0.42")
spec.add_dependency("faraday")
spec.add_development_dependency "async-rspec", "~> 1.2"
spec.add_development_dependency "covered"
spec.add_development_dependency "bundler"
spec.add_development_dependency "rspec", "~> 3.6"
spec.add_development_dependency "rake"
spec.add_development_dependency "vcr"
end