-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathprotocol-http1.gemspec
More file actions
28 lines (19 loc) · 913 Bytes
/
protocol-http1.gemspec
File metadata and controls
28 lines (19 loc) · 913 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
# frozen_string_literal: true
require_relative "lib/protocol/http1/version"
Gem::Specification.new do |spec|
spec.name = "protocol-http1"
spec.version = Protocol::HTTP1::VERSION
spec.summary = "A low level implementation of the HTTP/1 protocol."
spec.authors = ["Samuel Williams", "Thomas Morgan", "Anton Zhuravsky", "Brian Morearty", "Bruno Sutic", "Olle Jonsson"]
spec.license = "MIT"
spec.cert_chain = ["release.cert"]
spec.signing_key = File.expand_path("~/.gem/release.pem")
spec.homepage = "https://github.com/socketry/protocol-http1"
spec.metadata = {
"documentation_uri" => "https://socketry.github.io/protocol-http1/",
"source_code_uri" => "https://github.com/socketry/protocol-http1.git",
}
spec.files = Dir.glob(["{context,lib}/**/*", "*.md"], File::FNM_DOTMATCH, base: __dir__)
spec.required_ruby_version = ">= 3.3"
spec.add_dependency "protocol-http", "~> 0.62"
end