-
Notifications
You must be signed in to change notification settings - Fork 5
/
protoboeuf.gemspec
31 lines (22 loc) · 1007 Bytes
/
protoboeuf.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/protoboeuf/version"
Gem::Specification.new do |spec|
spec.name = "protoboeuf"
spec.version = ProtoBoeuf::VERSION
spec.authors = ["Shopify Engineering"]
spec.email = ["[email protected]"]
spec.summary = "A pure-Ruby protobuf encoder / decoder supporting `proto3`"
spec.description = "This Ruby gem is aimed at Shopify-internal use cases, and currently comes with limited support."
spec.homepage = "https://github.com/Shopify/protoboeuf"
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "#{spec.homepage}/releases"
spec.bindir = "exe"
spec.executables = ["protoboeuf"]
spec.require_paths = ["lib"]
spec.files = Dir.glob(["lib/**/*.rb"]) + ["README.md", "Gemfile", "Rakefile"]
spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.add_dependency("syntax_tree", "~> 6.2")
spec.platform = Gem::Platform::RUBY
spec.required_ruby_version = ">= 3.3"
spec.license = "MIT"
end