8784: Fix test for latest firefox.
[arvados.git] / sdk / cli / arvados-cli.gemspec
1 if not File.exist?('/usr/bin/git') then
2   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"
3   exit
4 end
5
6 git_timestamp, git_hash = `git log -n1 --first-parent --format=%ct:%H .`.chomp.split(":")
7 git_timestamp = Time.at(git_timestamp.to_i).utc
8
9 Gem::Specification.new do |s|
10   s.name        = 'arvados-cli'
11   s.version     = "0.1.#{git_timestamp.strftime('%Y%m%d%H%M%S')}"
12   s.date        = git_timestamp.strftime("%Y-%m-%d")
13   s.summary     = "Arvados CLI tools"
14   s.description = "Arvados command line tools, git commit #{git_hash}"
15   s.authors     = ["Arvados Authors"]
16   s.email       = 'gem-dev@curoverse.com'
17   #s.bindir      = '.'
18   s.licenses    = ['Apache-2.0']
19   s.files       = ["bin/arv", "bin/arv-run-pipeline-instance",
20                    "bin/arv-crunch-job", "bin/arv-tag", "bin/crunch-job",
21                    "LICENSE-2.0.txt"]
22   s.executables << "arv"
23   s.executables << "arv-run-pipeline-instance"
24   s.executables << "arv-crunch-job"
25   s.executables << "arv-tag"
26   s.required_ruby_version = '>= 2.1.0'
27   s.add_runtime_dependency 'arvados', '~> 0.1', '>= 0.1.20150128223554'
28   # Our google-api-client dependency used to be < 0.9, but that could be
29   # satisfied by the buggy 0.9.pre*.  https://dev.arvados.org/issues/9213
30   s.add_runtime_dependency 'google-api-client', '~> 0.6', '>= 0.6.3', '<0.8.9'
31   s.add_runtime_dependency 'activesupport', '>= 3.2.13', '< 5'
32   s.add_runtime_dependency 'json', '>= 1.7.7', '<3'
33   s.add_runtime_dependency 'trollop', '~> 2.0'
34   s.add_runtime_dependency 'andand', '~> 1.3', '>= 1.3.3'
35   s.add_runtime_dependency 'oj', '~> 2.0', '>= 2.0.3'
36   s.add_runtime_dependency 'curb', '~> 0.8'
37   s.homepage    =
38     'https://arvados.org'
39 end