-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathprotocol-redis.gemspec
More file actions
27 lines (19 loc) · 969 Bytes
/
protocol-redis.gemspec
File metadata and controls
27 lines (19 loc) · 969 Bytes
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
# frozen_string_literal: true
require_relative "lib/protocol/redis/version"
Gem::Specification.new do |spec|
spec.name = "protocol-redis"
spec.version = Protocol::Redis::VERSION
spec.summary = "A transport agnostic RESP protocol client/server."
spec.authors = ["Samuel Williams", "Dimitry Chopey", "Nick Burwell", "David Ortiz", "Nakul Warrier", "Troex Nevelin", "Daniel Evans", "Olle Jonsson", "Salim Semaoune"]
spec.license = "MIT"
spec.cert_chain = ["release.cert"]
spec.signing_key = File.expand_path("~/.gem/release.pem")
spec.homepage = "https://github.com/socketry/protocol-redis"
spec.metadata = {
"documentation_uri" => "https://socketry.github.io/protocol-redis/",
"funding_uri" => "https://github.com/sponsors/ioquatix",
"source_code_uri" => "https://github.com/socketry/protocol-redis.git",
}
spec.files = Dir.glob(["{context,lib}/**/*", "*.md"], File::FNM_DOTMATCH, base: __dir__)
spec.required_ruby_version = ">= 3.2"
end