-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathasync-rest.gemspec
29 lines (20 loc) · 893 Bytes
/
async-rest.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
# frozen_string_literal: true
require_relative "lib/async/rest/version"
Gem::Specification.new do |spec|
spec.name = "async-rest"
spec.version = Async::REST::VERSION
spec.summary = "A library for RESTful clients (and hopefully servers)."
spec.authors = ["Samuel Williams", "Olle Jonsson", "Cyril Roelandt", "Terry Kerr"]
spec.license = "MIT"
spec.cert_chain = ["release.cert"]
spec.signing_key = File.expand_path("~/.gem/release.pem")
spec.homepage = "https://github.com/socketry/async-rest"
spec.metadata = {
"documentation_uri" => "https://socketry.github.io/async-rest/",
"source_code_uri" => "https://github.com/socketry/async-rest.git",
}
spec.files = Dir.glob(["{lib}/**/*", "*.md"], File::FNM_DOTMATCH, base: __dir__)
spec.required_ruby_version = ">= 3.1"
spec.add_dependency "async-http", "~> 0.42"
spec.add_dependency "protocol-http", "~> 0.45"
end