-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsubstrait.gemspec
36 lines (31 loc) · 1.01 KB
/
substrait.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
32
33
34
35
36
# -*- ruby -*-
#
# SPDX-License-Identifier: Apache-2.0
require_relative "lib/substrait/version"
Gem::Specification.new do |spec|
spec.name = "substrait"
spec.version = Substrait::VERSION
spec.homepage = "https://substrait.io/"
spec.authors = ["Sutou Kouhei"]
spec.email = ["[email protected]"]
spec.summary = "The Ruby bindings or Substrait"
spec.description =
"Substrait is cross-language serialization for Relational Algebra. " +
"You can use Substrait in Ruby with this gem."
spec.license = "Apache-2.0"
spec.files = [
"#{spec.name}.gemspec",
"CHANGELOG.md",
"Gemfile",
"LICENSE.txt",
"README.md",
"Rakefile",
*Dir.glob("lib/**/*.rb"),
]
spec.add_runtime_dependency("google-protobuf")
spec.metadata = {
"bug_tracker_uri" => "https://github.com/substrait/substrait-ruby/issues",
"changelog_uri" => "https://github.com/substrait/substrait-ruby/blob/#{spec.version}/doc/text/news.md",
"source_code_uri" => "https://github.com/substrait/substrait-ruby",
}
end