-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprotobuf_nested_struct.gemspec
More file actions
33 lines (28 loc) · 1.08 KB
/
protobuf_nested_struct.gemspec
File metadata and controls
33 lines (28 loc) · 1.08 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/protobuf_nested_struct/version"
Gem::Specification.new do |spec|
spec.name = "protobuf_nested_struct"
spec.version = ProtobufNestedStruct::VERSION
spec.license = "MIT"
spec.authors = ["Robert Pankowecki", "Arkency"]
spec.email = ["dev@arkency.com"]
spec.summary =
"Serialize primitives and deep structures (array, hash) to protobuf"
spec.description = <<~EOD
Serialize primitives and deep structures (array, hash) to protobuf
EOD
spec.homepage = "https://github.com/arkency/protobuf-nested-struct"
spec.files = Dir["lib/**/*"]
spec.require_paths = %w[lib]
spec.extra_rdoc_files = %w[README.md]
spec.metadata = {
"changelog_uri" =>
"https://github.com/arkency/protobuf-nested-struct/releases",
"source_code_uri" => "https://github.com/arkency/protobuf-nested-struct",
"bug_tracker_uri" =>
"https://github.com/arkency/protobuf-nested-struct/issues",
"rubygems_mfa_required" => "true"
}
spec.required_ruby_version = ">= 2.7"
spec.add_dependency "google-protobuf", ">= 4.26.0"
end