-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
protocol-hpack.gemspec
26 lines (18 loc) · 1.03 KB
/
protocol-hpack.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
# frozen_string_literal: true
require_relative "lib/protocol/hpack/version"
Gem::Specification.new do |spec|
spec.name = "protocol-hpack"
spec.version = Protocol::HPACK::VERSION
spec.summary = "A compresssor and decompressor for HTTP/2's HPACK format."
spec.authors = ["Samuel Williams", "Ilya Grigorik", "Tamir Duberstein", "Nathan Froyd", "Kaoru Maeda", "Tiago Cardoso", "Byron Formwalt", "Cyril Roelandt", "Daniel Morrison", "Felix Yan", "George Ulmer", "Jingyi Chen", "Justin Mazzocchi", "Kenichi Nakamura", "Kien Nguyen Trung", "Maruth Goyal", "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/http-hpack"
spec.metadata = {
"documentation_uri" => "https://socketry.github.io/protocol-hpack/",
"source_code_uri" => "https://github.com/socketry/http-hpack.git",
}
spec.files = Dir.glob(["{lib,tasks}/**/*", "*.md"], File::FNM_DOTMATCH, base: __dir__)
spec.required_ruby_version = ">= 3.1"
end