-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsus-fixtures-async-http.gemspec
31 lines (22 loc) · 1.01 KB
/
sus-fixtures-async-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
# frozen_string_literal: true
require_relative "lib/sus/fixtures/async/http/version"
Gem::Specification.new do |spec|
spec.name = "sus-fixtures-async-http"
spec.version = Sus::Fixtures::Async::HTTP::VERSION
spec.summary = "Test fixtures for running in Async::HTTP."
spec.authors = ["Samuel Williams", "Felix Yan"]
spec.license = "MIT"
spec.cert_chain = ['release.cert']
spec.signing_key = File.expand_path('~/.gem/release.pem')
spec.homepage = "https://github.com/suspecting/sus-fixtures-async-http"
spec.metadata = {
"documentation_uri" => "https://suspecting.github.io/sus-fixtures-async-http/",
"funding_uri" => "https://github.com/sponsors/ioquatix/",
"source_code_uri" => "https://github.com/suspecting/sus-fixtures-async-http.git",
}
spec.files = Dir.glob(['{lib}/**/*', '*.md'], File::FNM_DOTMATCH, base: __dir__)
spec.required_ruby_version = ">= 3.1"
spec.add_dependency "async-http", "~> 0.54"
spec.add_dependency "sus", "~> 0.31"
spec.add_dependency "sus-fixtures-async", "~> 0.1"
end