[ARVADOS] updated: 1.3.0-945-g0a80a91b9

Git user git at public.curoverse.com
Tue May 28 19:49:06 UTC 2019


Summary of changes:
 build/run-tests.sh               |  2 +-
 services/login-sync/.gitignore   |  1 -
 services/login-sync/Gemfile.lock | 87 ++++++++++++++++++++++++++++++++++++++++
 3 files changed, 88 insertions(+), 2 deletions(-)
 create mode 100644 services/login-sync/Gemfile.lock

       via  0a80a91b9921dc70feedccdbc8adcbb1c3b1df07 (commit)
       via  d88327b8cfecf2a975a24bcb113121c6b72e743b (commit)
      from  7e1044a644e388d172a645426bc3df69ab7d69c4 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit 0a80a91b9921dc70feedccdbc8adcbb1c3b1df07
Author: Lucas Di Pentima <ldipentima at veritasgenetics.com>
Date:   Tue May 28 16:48:43 2019 -0300

    14946: Adds Gemfile.lock file on login-sync.
    
    Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <ldipentima at veritasgenetics.com>

diff --git a/services/login-sync/.gitignore b/services/login-sync/.gitignore
index cec3cb55a..c111b3313 100644
--- a/services/login-sync/.gitignore
+++ b/services/login-sync/.gitignore
@@ -1,2 +1 @@
 *.gem
-Gemfile.lock
diff --git a/services/login-sync/Gemfile.lock b/services/login-sync/Gemfile.lock
new file mode 100644
index 000000000..e82c6b3c4
--- /dev/null
+++ b/services/login-sync/Gemfile.lock
@@ -0,0 +1,87 @@
+PATH
+  remote: .
+  specs:
+    arvados-login-sync (1.3.3.20190402172810)
+      arvados (~> 1.3.0, >= 1.3.0)
+
+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.6.0)
+      public_suffix (>= 2.0.2, < 4.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.2)
+      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.8.1)
+      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.2.0)
+    jwt (1.5.6)
+    launchy (2.4.3)
+      addressable (~> 2.3)
+    memoist (0.16.0)
+    metaclass (0.0.4)
+    minitest (5.11.3)
+    mocha (1.8.0)
+      metaclass (~> 0.0.1)
+    multi_json (1.13.1)
+    multipart-post (2.1.1)
+    os (1.0.1)
+    public_suffix (3.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.5)
+      thread_safe (~> 0.1)
+
+PLATFORMS
+  ruby
+
+DEPENDENCIES
+  arvados-login-sync!
+  minitest (>= 5.0.0)
+  mocha (>= 1.5.0)
+  rake
+
+BUNDLED WITH
+   1.17.3

commit d88327b8cfecf2a975a24bcb113121c6b72e743b
Author: Lucas Di Pentima <ldipentima at veritasgenetics.com>
Date:   Tue May 28 16:23:42 2019 -0300

    14946: Fixes 'gem install' invocation.
    
    Params --no-ri and --no-rdoc are no longer valid.
    
    Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <ldipentima at veritasgenetics.com>

diff --git a/build/run-tests.sh b/build/run-tests.sh
index 0daf80f76..937fb5fa0 100755
--- a/build/run-tests.sh
+++ b/build/run-tests.sh
@@ -903,7 +903,7 @@ install_gem() {
         && cd "$WORKSPACE/$srcpath" \
         && bundle_install_trylocal \
         && gem build "$gemname.gemspec" \
-        && with_test_gemset gem install --no-ri --no-rdoc $(ls -t "$gemname"-*.gem|head -n1)
+        && with_test_gemset gem install --no-document $(ls -t "$gemname"-*.gem|head -n1)
 }
 
 install_sdk/ruby() {

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list