From 7ad5beea6c92dbb13af52a380a86f8ca1b7e0ff8 Mon Sep 17 00:00:00 2001 From: Peter Amstutz Date: Tue, 3 Mar 2020 16:17:38 -0500 Subject: [PATCH] Remove Gemfile.lock from login-sync no issue # To be consistent with sdk/ruby sdk/cli behavior. There's a circular dependency where the version number of the gem is embedded in Gemfile.lock, but the version number is derived from the git commit timestamp, so when it updates Gemfile.lock it creates a new version, which requires a updating Gemfile.lock, and so on. However, unlike the Ruby on Rails deb/rpm packages, when we create gems (dev or production) it does not include Gemfile.lock, so there's no benefit to having it checked in. Arvados-DCO-1.1-Signed-off-by: Peter Amstutz --- services/login-sync/.gitignore | 1 + services/login-sync/Gemfile.lock | 89 -------------------------------- 2 files changed, 1 insertion(+), 89 deletions(-) delete mode 100644 services/login-sync/Gemfile.lock diff --git a/services/login-sync/.gitignore b/services/login-sync/.gitignore index c111b33137..369ba8ec07 100644 --- a/services/login-sync/.gitignore +++ b/services/login-sync/.gitignore @@ -1 +1,2 @@ *.gem +Gemfile.lock \ No newline at end of file diff --git a/services/login-sync/Gemfile.lock b/services/login-sync/Gemfile.lock deleted file mode 100644 index 28cdff6fd2..0000000000 --- a/services/login-sync/Gemfile.lock +++ /dev/null @@ -1,89 +0,0 @@ -PATH - remote: . - specs: - arvados-login-sync (1.5.0.dev20200114213539) - arvados (~> 1.3.0, >= 1.3.0) - faraday (< 0.16) - signet (< 0.12) - -GEM - remote: https://rubygems.org/ - specs: - activesupport (5.0.7.2) - concurrent-ruby (~> 1.0, >= 1.0.2) - i18n (>= 0.7, < 2) - minitest (~> 5.1) - tzinfo (~> 1.1) - addressable (2.7.0) - public_suffix (>= 2.0.2, < 5.0) - andand (1.3.3) - arvados (1.3.3.20190320201707) - activesupport (>= 3) - andand (~> 1.3, >= 1.3.3) - arvados-google-api-client (>= 0.7, < 0.8.9) - i18n (~> 0) - json (>= 1.7.7, < 3) - jwt (>= 0.1.5, < 2) - arvados-google-api-client (0.8.7.3) - activesupport (>= 3.2, < 5.1) - addressable (~> 2.3) - autoparse (~> 0.3) - extlib (~> 0.9) - faraday (~> 0.9) - googleauth (~> 0.3) - launchy (~> 2.4) - multi_json (~> 1.10) - retriable (~> 1.4) - signet (~> 0.6) - autoparse (0.3.3) - addressable (>= 2.3.1) - extlib (>= 0.9.15) - multi_json (>= 1.0.0) - concurrent-ruby (1.1.5) - extlib (0.9.16) - faraday (0.15.4) - multipart-post (>= 1.2, < 3) - googleauth (0.9.0) - faraday (~> 0.12) - jwt (>= 1.4, < 3.0) - memoist (~> 0.16) - multi_json (~> 1.11) - os (>= 0.9, < 2.0) - signet (~> 0.7) - i18n (0.9.5) - concurrent-ruby (~> 1.0) - json (2.3.0) - jwt (1.5.6) - launchy (2.4.3) - addressable (~> 2.3) - memoist (0.16.2) - metaclass (0.0.4) - minitest (5.11.3) - mocha (1.8.0) - metaclass (~> 0.0.1) - multi_json (1.14.1) - multipart-post (2.1.1) - os (1.0.1) - public_suffix (4.0.3) - rake (12.3.2) - retriable (1.4.1) - signet (0.11.0) - addressable (~> 2.3) - faraday (~> 0.9) - jwt (>= 1.5, < 3.0) - multi_json (~> 1.10) - thread_safe (0.3.6) - tzinfo (1.2.6) - thread_safe (~> 0.1) - -PLATFORMS - ruby - -DEPENDENCIES - arvados-login-sync! - minitest (>= 5.0.0) - mocha (>= 1.5.0) - rake - -BUNDLED WITH - 1.11 -- 2.30.2