]> git.proxmox.com Git - ceph.git/blame - ceph/src/arrow/ruby/red-arrow-dataset/red-arrow-dataset.gemspec
import quincy 17.2.0
[ceph.git] / ceph / src / arrow / ruby / red-arrow-dataset / red-arrow-dataset.gemspec
CommitLineData
1d09f67e
TL
1# -*- ruby -*-
2#
3# Licensed to the Apache Software Foundation (ASF) under one
4# or more contributor license agreements. See the NOTICE file
5# distributed with this work for additional information
6# regarding copyright ownership. The ASF licenses this file
7# to you under the Apache License, Version 2.0 (the
8# "License"); you may not use this file except in compliance
9# with the License. You may obtain a copy of the License at
10#
11# http://www.apache.org/licenses/LICENSE-2.0
12#
13# Unless required by applicable law or agreed to in writing,
14# software distributed under the License is distributed on an
15# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16# KIND, either express or implied. See the License for the
17# specific language governing permissions and limitations
18# under the License.
19
20require_relative "lib/arrow-dataset/version"
21
22Gem::Specification.new do |spec|
23 spec.name = "red-arrow-dataset"
24 version_components = [
25 ArrowDataset::Version::MAJOR.to_s,
26 ArrowDataset::Version::MINOR.to_s,
27 ArrowDataset::Version::MICRO.to_s,
28 ArrowDataset::Version::TAG,
29 ]
30 spec.version = version_components.compact.join(".")
31 spec.homepage = "https://arrow.apache.org/"
32 spec.authors = ["Apache Arrow Developers"]
33 spec.email = ["dev@arrow.apache.org"]
34
35 spec.summary = "Red Arrow Dataset is the Ruby bindings of Apache Arrow Dataset"
36 spec.description =
37 "Apache Arrow Dataset is one of Apache Arrow components to read and write " +
38 "semantic datasets stored in different locations and formats."
39 spec.license = "Apache-2.0"
40 spec.files = ["README.md", "Rakefile", "Gemfile", "#{spec.name}.gemspec"]
41 spec.files += ["LICENSE.txt", "NOTICE.txt"]
42 spec.files += Dir.glob("lib/**/*.rb")
43 spec.test_files += Dir.glob("test/**/*")
44 spec.extensions = ["dependency-check/Rakefile"]
45
46 spec.add_runtime_dependency("red-arrow", "= #{spec.version}")
47
48 spec.add_development_dependency("bundler")
49 spec.add_development_dependency("rake")
50 spec.add_development_dependency("test-unit")
51end