-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprotocol-grpc.gemspec
More file actions
33 lines (24 loc) · 1.09 KB
/
Copy pathprotocol-grpc.gemspec
File metadata and controls
33 lines (24 loc) · 1.09 KB
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
# frozen_string_literal: true
require_relative "lib/protocol/grpc/version"
Gem::Specification.new do |spec|
spec.name = "protocol-grpc"
spec.version = Protocol::GRPC::VERSION
spec.summary = "Protocol abstractions for gRPC, built on top of protocol-http."
spec.authors = ["Samuel Williams", "Alex Watt"]
spec.license = "MIT"
spec.cert_chain = ["release.cert"]
spec.signing_key = File.expand_path("~/.gem/release.pem")
spec.homepage = "https://github.com/socketry/protocol-grpc"
spec.metadata = {
"bug_tracker_uri" => "https://github.com/socketry/protocol-grpc/issues",
"changelog_uri" => "https://github.com/socketry/protocol-grpc/blob/main/releases.md",
"documentation_uri" => "https://socketry.github.io/protocol-grpc/",
"source_code_uri" => "https://github.com/socketry/protocol-grpc.git",
}
spec.files = Dir.glob(["{context,lib}/**/*", "*.md"], File::FNM_DOTMATCH, base: __dir__)
spec.required_ruby_version = ">= 3.3"
spec.add_dependency "async", "~> 2"
spec.add_dependency "base64"
spec.add_dependency "google-protobuf"
spec.add_dependency "protocol-http", "~> 0.56"
end