Add 'apps/arv-web/' from commit 'f9732ad8460d013c2f28363655d0d1b91894dca5'
[arvados.git] / sdk / ruby / arvados.gemspec
1 if not File.exists?('/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'
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 client library"
14   s.description = "Arvados client library, git commit #{git_hash}"
15   s.authors     = ["Arvados Authors"]
16   s.email       = 'gem-dev@curoverse.com'
17   s.licenses    = ['Apache License, Version 2.0']
18   s.files       = ["lib/arvados.rb", "lib/arvados/keep.rb"]
19   s.required_ruby_version = '>= 2.1.0'
20   s.add_dependency('google-api-client', '~> 0.6.3', '>= 0.6.3')
21   s.add_dependency('activesupport', '>= 3.2.13')
22   s.add_dependency('json', '~> 1.7', '>= 1.7.7')
23   s.add_dependency('andand', '~> 1.3', '>= 1.3.3')
24   s.add_runtime_dependency('jwt', '>= 0.1.5', '< 1.0.0')
25   s.homepage    =
26     'https://arvados.org'
27 end