Make sure to bump the dependency on the arvados gems to the 1.3 series.
[arvados.git] / services / login-sync / arvados-login-sync.gemspec
index 28ae431669b05cd21521e3211f68af1c58e5d35d..b64aab2dc6cb0e189341ab93d175e27d38a659ce 100644 (file)
@@ -7,12 +7,14 @@ if not File.exists?('/usr/bin/git') then
   exit
 end
 
+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
 
 Gem::Specification.new do |s|
   s.name        = 'arvados-login-sync'
-  s.version     = "0.1.#{git_timestamp.strftime('%Y%m%d%H%M%S')}"
+  s.version     = "#{git_latest_tag}.#{git_timestamp.strftime('%Y%m%d%H%M%S')}"
   s.date        = git_timestamp.strftime("%Y-%m-%d")
   s.summary     = "Set up local login accounts for Arvados users"
   s.description = "Creates and updates local login accounts for Arvados users. Built from git commit #{git_hash}"
@@ -22,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', '~> 0.1', '>= 0.1.20150615153458'
+  s.add_runtime_dependency 'arvados', '~> 1.3.0', '>= 1.3.0'
   s.homepage    =
     'https://arvados.org'
 end