15044: Fix sensitivity to group existence on the testing host.
[arvados.git] / services / login-sync / arvados-login-sync.gemspec
index 515a7832d52ba146d0cc719544273a716b9d9c40..f998a8f35211c89ae81dd89def87d5aef9d46412 100644 (file)
@@ -2,12 +2,12 @@
 #
 # SPDX-License-Identifier: AGPL-3.0
 
-if not File.exists?('/usr/bin/git') then
+if not File.exist?('/usr/bin/git') then
   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"
   exit
 end
 
-git_latest_tag = `git describe --abbrev=0`
+git_latest_tag = `git tag -l |sort -V -r |head -n1`
 git_latest_tag = git_latest_tag.encode('utf-8').strip
 git_timestamp, git_hash = `git log -n1 --first-parent --format=%ct:%H .`.chomp.split(":")
 git_timestamp = Time.at(git_timestamp.to_i).utc
@@ -24,7 +24,7 @@ Gem::Specification.new do |s|
   s.files       = ["bin/arvados-login-sync", "agpl-3.0.txt"]
   s.executables << "arvados-login-sync"
   s.required_ruby_version = '>= 2.1.0'
-  s.add_runtime_dependency 'arvados', '~> 1.1.0', '>= 1.1.4'
+  s.add_runtime_dependency 'arvados', '~> 1.3.0', '>= 1.3.0'
   s.homepage    =
     'https://arvados.org'
 end