-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patharrow-datafusion.gemspec
More file actions
23 lines (19 loc) · 917 Bytes
/
arrow-datafusion.gemspec
File metadata and controls
23 lines (19 loc) · 917 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require_relative "lib/datafusion/version"
Gem::Specification.new do |spec|
spec.name = "arrow-datafusion"
spec.version = Datafusion::VERSION
spec.authors = ["jychen7"]
spec.homepage = "https://github.com/jychen7/arrow-datafusion-ruby"
spec.summary = "yet another Ruby bindings of Apache Arrow Datafusion"
spec.description =
"yet another Ruby bindings of Apache Arrow Datafusion"
spec.license = "Apache-2.0"
spec.files = ["README.md", "#{spec.name}.gemspec", "LICENSE"]
spec.files += Dir.glob("ext/datafusion_ruby/src/**/*.rs")
spec.files += ["ext/datafusion_ruby/Rakefile", "ext/datafusion_ruby/Cargo.toml", "ext/datafusion_ruby/Cargo.lock"]
spec.files += Dir.glob("lib/**/*.rb")
spec.extensions = ["ext/datafusion_ruby/Rakefile"]
# actually a build time dependency, but that's not an option.
spec.add_runtime_dependency "rake", "> 1"
spec.required_ruby_version = ">= 2.6.0"
end