-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbenchmark-http.gemspec
34 lines (24 loc) · 1 KB
/
benchmark-http.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
30
31
32
33
34
# frozen_string_literal: true
require_relative "lib/benchmark/http/version"
Gem::Specification.new do |spec|
spec.name = "benchmark-http"
spec.version = Benchmark::HTTP::VERSION
spec.summary = "An asynchronous benchmark toolbox for modern HTTP servers."
spec.authors = ["Samuel Williams", "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/benchmark-http"
spec.metadata = {
"documentation_uri" => "https://socketry.github.io/benchmark-http/",
"source_code_uri" => "https://github.com/socketry/benchmark-http.git",
}
spec.files = Dir.glob(["{bin,lib}/**/*", "*.md"], File::FNM_DOTMATCH, base: __dir__)
spec.executables = ["benchmark-http"]
spec.required_ruby_version = ">= 3.1"
spec.add_dependency "async-await"
spec.add_dependency "async-http", "~> 0.83"
spec.add_dependency "console"
spec.add_dependency "samovar", "~> 2.0"
spec.add_dependency "xrb-sanitize"
end