-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathhttp-2.gemspec
28 lines (24 loc) · 1.07 KB
/
http-2.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
# frozen_string_literal: true
lib = File.expand_path("./lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "http/2/version"
Gem::Specification.new do |spec|
spec.name = "http-2"
spec.version = HTTP2::VERSION
spec.authors = ["Tiago Cardoso", "Ilya Grigorik", "Kaoru Maeda"]
spec.email = %w[[email protected] [email protected]]
spec.description = "Pure-ruby HTTP 2.0 protocol implementation"
spec.summary = spec.description
spec.homepage = "https://github.com/igrigorik/http-2"
spec.license = "MIT"
spec.required_ruby_version = ">=2.7.0"
spec.metadata = {
"bug_tracker_uri" => "https://github.com/igrigorik/http-2/issues",
"changelog_uri" => "https://github.com/igrigorik/http-2/blob/main/CHANGELOG.md",
"source_code_uri" => "https://github.com/igrigorik/http-2",
"homepage_uri" => "https://github.com/igrigorik/http-2",
"rubygems_mfa_required" => "true"
}
spec.files = Dir["LICENSE.txt", "README.md", "lib/**/*.rb", "sig/**/*.rbs"]
spec.require_paths = ["lib"]
end