-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
async-http.gemspec
36 lines (27 loc) · 1.47 KB
/
async-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
36
# frozen_string_literal: true
require_relative "lib/async/http/version"
Gem::Specification.new do |spec|
spec.name = "async-http"
spec.version = Async::HTTP::VERSION
spec.summary = "A HTTP client and server library."
spec.authors = ["Samuel Williams", "Brian Morearty", "Bruno Sutic", "Janko Marohnić", "Thomas Morgan", "Adam Daniels", "Igor Sidorov", "Anton Zhuravsky", "Cyril Roelandt", "Denis Talakevich", "Hal Brodigan", "Ian Ker-Seymer", "Josh Huber", "Marco Concetto Rudilosso", "Olle Jonsson", "Orgad Shaneh", "Sam Shadwell", "Stefan Wrobel", "Tim Meusel", "Trevor Turk", "Viacheslav Koval", "dependabot[bot]"]
spec.license = "MIT"
spec.cert_chain = ["release.cert"]
spec.signing_key = File.expand_path("~/.gem/release.pem")
spec.homepage = "https://github.com/socketry/async-http"
spec.metadata = {
"documentation_uri" => "https://socketry.github.io/async-http/",
"source_code_uri" => "https://github.com/socketry/async-http.git",
}
spec.files = Dir.glob(["{bake,lib}/**/*", "*.md"], File::FNM_DOTMATCH, base: __dir__)
spec.required_ruby_version = ">= 3.1"
spec.add_dependency "async", ">= 2.10.2"
spec.add_dependency "async-pool", "~> 0.9"
spec.add_dependency "io-endpoint", "~> 0.14"
spec.add_dependency "io-stream", "~> 0.6"
spec.add_dependency "protocol-http", "~> 0.43"
spec.add_dependency "protocol-http1", ">= 0.28.1"
spec.add_dependency "protocol-http2", "~> 0.19"
spec.add_dependency "traces", "~> 0.10"
spec.add_dependency "metrics", "~> 0.12"
end