c7e20e2a72947d2e74f147e6a6c0fd68d14254f8
[arvados.git] / sdk / cli / arvados-cli.gemspec
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: Apache-2.0
4
5 if not File.exist?('/usr/bin/git') then
6   STDERR.puts "\nGit binary not found, aborting. Please install git and run gem build from a checked out copy of the git repository.\n\n"
7   exit
8 end
9
10 git_latest_tag = `git tag -l |sort -V -r |head -n1`
11 git_latest_tag = git_latest_tag.encode('utf-8').strip
12 git_timestamp, git_hash = `git log -n1 --first-parent --format=%ct:%H .`.chomp.split(":")
13 git_timestamp = Time.at(git_timestamp.to_i).utc
14
15 Gem::Specification.new do |s|
16   s.name        = 'arvados-cli'
17   s.version     = "#{git_latest_tag}.#{git_timestamp.strftime('%Y%m%d%H%M%S')}"
18   s.date        = git_timestamp.strftime("%Y-%m-%d")
19   s.summary     = "Arvados CLI tools"
20   s.description = "Arvados command line tools, git commit #{git_hash}"
21   s.authors     = ["Arvados Authors"]
22   s.email       = 'gem-dev@curoverse.com'
23   #s.bindir      = '.'
24   s.licenses    = ['Apache-2.0']
25   s.files       = ["bin/arv", "bin/arv-run-pipeline-instance",
26                    "bin/arv-crunch-job", "bin/arv-tag", "bin/crunch-job",
27                    "LICENSE-2.0.txt"]
28   s.executables << "arv"
29   s.executables << "arv-run-pipeline-instance"
30   s.executables << "arv-crunch-job"
31   s.executables << "arv-tag"
32   s.required_ruby_version = '>= 2.1.0'
33   s.add_runtime_dependency 'arvados', '~> 1.3.0', '>= 1.3.0'
34   # Our google-api-client dependency used to be < 0.9, but that could be
35   # satisfied by the buggy 0.9.pre*.  https://dev.arvados.org/issues/9213
36   s.add_runtime_dependency 'cure-google-api-client', '~> 0.6', '>= 0.6.3', '<0.8.9'
37   s.add_runtime_dependency 'activesupport', '>= 3.2.13', '< 5'
38   s.add_runtime_dependency 'json', '>= 1.7.7', '<3'
39   s.add_runtime_dependency 'optimist', '~> 3.0'
40   s.add_runtime_dependency 'andand', '~> 1.3', '>= 1.3.3'
41   s.add_runtime_dependency 'oj', '~> 3.0'
42   s.add_runtime_dependency 'curb', '~> 0.8'
43   s.homepage    =
44     'https://arvados.org'
45 end