1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
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"
10 version = `#{__dir__}/../../build/version-at-commit.sh HEAD`.encode('utf-8').strip
11 git_timestamp, git_hash = `git log -n1 --first-parent --format=%ct:%H .`.chomp.split(":")
12 git_timestamp = Time.at(git_timestamp.to_i).utc
14 Gem::Specification.new do |s|
15 s.name = 'arvados-login-sync'
17 s.date = git_timestamp.strftime("%Y-%m-%d")
18 s.summary = "Set up local login accounts for Arvados users"
19 s.description = "Creates and updates local login accounts for Arvados users. Built from git commit #{git_hash}"
20 s.authors = ["Arvados Authors"]
21 s.email = 'gem-dev@curoverse.com'
22 s.licenses = ['GNU Affero General Public License, version 3.0']
23 s.files = ["bin/arvados-login-sync", "agpl-3.0.txt"]
24 s.executables << "arvados-login-sync"
25 s.required_ruby_version = '>= 2.1.0'
26 s.add_runtime_dependency 'arvados', '~> 1.3.0', '>= 1.3.0'
27 # arvados-google-api-client 0.8.7.2 is incompatible with faraday 0.16.2
28 s.add_dependency('faraday', '< 0.16')