Skip to content

Commit

Permalink
Merge pull request #3999 from rubygems/ruby_2_7_2
Browse files Browse the repository at this point in the history
Use ruby 2.7.2 in CI

(cherry picked from commit 7309417)
  • Loading branch information
deivid-rodriguez committed Dec 7, 2020
1 parent 950bb82 commit 8cecec2
Show file tree
Hide file tree
Showing 685 changed files with 355 additions and 362 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/daily-bundler.yml
Expand Up @@ -38,7 +38,7 @@ jobs:

- name: Get previous status
if: always()
run: echo "::set-env name=OLD_STATUS::$(curl -sS 'https://api.github.com/repos/rubygems/rubygems/actions/workflows/daily-bundler.yml/runs?event=schedule&branch=master' | jq '.workflow_runs | .[1].conclusion')"
run: echo "OLD_STATUS=$(curl -sS 'https://api.github.com/repos/rubygems/rubygems/actions/workflows/daily-bundler.yml/runs?event=schedule&branch=master' | jq '.workflow_runs | .[1].conclusion')" >> $GITHUB_ENV

- uses: 8398a7/action-slack@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/daily-rubygems.yml
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Get previous status
if: always()
run: echo "::set-env name=OLD_STATUS::$(curl -sS 'https://api.github.com/repos/rubygems/rubygems/actions/workflows/daily-rubygems.yml/runs?event=schedule&branch=master' | jq '.workflow_runs | .[1].conclusion')"
run: echo "OLD_STATUS=$(curl -sS 'https://api.github.com/repos/rubygems/rubygems/actions/workflows/daily-rubygems.yml/runs?event=schedule&branch=master' | jq '.workflow_runs | .[1].conclusion')" >> $GITHUB_ENV

- uses: 8398a7/action-slack@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/install-rubygems.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-18.04
strategy:
matrix:
ruby: [ 2.3.8, 2.4.10, 2.5.8, 2.6.6, 2.7.1, jruby-9.2.11.1 ]
ruby: [ 2.3.8, 2.4.10, 2.5.8, 2.6.6, 2.7.2, jruby-9.2.11.1 ]
openssl: [true, false]
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos-rubygems.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: macos-10.15
strategy:
matrix:
ruby: [ 2.4.10, 2.5.8, 2.6.6, 2.7.1 ]
ruby: [ 2.4.10, 2.5.8, 2.6.6, 2.7.2 ]
steps:
- uses: actions/checkout@v2
- name: Setup ruby
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/older-rubygems-bundler.yml
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-18.04
strategy:
matrix:
ruby: [ 2.3.8, 2.4.10, 2.5.8, 2.6.6, 2.7.1 ]
ruby: [ 2.3.8, 2.4.10, 2.5.8, 2.6.6, 2.7.2 ]
rgv: [ v2.5.2, v2.6.14, v2.7.10, v3.0.8, v3.1.4 ]
bundler: [ '' ]
exclude:
Expand All @@ -27,15 +27,15 @@ jobs:
- { bundler: '', ruby: 2.6.6, rgv: v2.5.2 }
- { bundler: '', ruby: 2.6.6, rgv: v2.6.14 }
- { bundler: '', ruby: 2.6.6, rgv: v2.7.10 }
- { bundler: '', ruby: 2.7.1, rgv: v2.5.2 }
- { bundler: '', ruby: 2.7.1, rgv: v2.6.14 }
- { bundler: '', ruby: 2.7.1, rgv: v2.7.10 }
- { bundler: '', ruby: 2.7.1, rgv: v3.0.8 }
- { bundler: '', ruby: 2.7.2, rgv: v2.5.2 }
- { bundler: '', ruby: 2.7.2, rgv: v2.6.14 }
- { bundler: '', ruby: 2.7.2, rgv: v2.7.10 }
- { bundler: '', ruby: 2.7.2, rgv: v3.0.8 }
include:
- { bundler: 3.0.0, ruby: 2.4.10, rgv: v3.1.4 }
- { bundler: 3.0.0, ruby: 2.5.8, rgv: v3.1.4 }
- { bundler: 3.0.0, ruby: 2.6.6, rgv: v3.1.4 }
- { bundler: 3.0.0, ruby: 2.7.1, rgv: v3.1.4 }
- { bundler: 3.0.0, ruby: 2.7.2, rgv: v3.1.4 }
env:
RGV: ${{ matrix.rgv }}
RUBYOPT: --disable-gems
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ruby-core.yml
Expand Up @@ -21,7 +21,7 @@ jobs:
ruby-version: head
bundler: none
- name: Save latest buildable revision to environment
run: echo "::set-env name=REF::$(ruby -v | cut -d')' -f1 | cut -d' ' -f5)"
run: echo "REF=$(ruby -v | cut -d')' -f1 | cut -d' ' -f5)" >> $GITHUB_ENV
- uses: actions/checkout@v2
with:
repository: ruby/ruby
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu-bundler.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-18.04
strategy:
matrix:
ruby: [ 2.3.8, 2.4.10, 2.5.8, 2.6.6, 2.7.1 ]
ruby: [ 2.3.8, 2.4.10, 2.5.8, 2.6.6, 2.7.2 ]
bundler: [ '', 3.0.0 ]
exclude:
- { bundler: 3.0.0, ruby: 2.3.8 }
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu-lint.yml
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7.1
ruby-version: 2.7.2
bundler: none
- name: Install Dependencies
run: rake setup
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu-rubygems.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-18.04
strategy:
matrix:
ruby: [ 2.3.8, 2.4.10, 2.5.8, 2.6.6, 2.7.1, jruby-9.2.11.1 ]
ruby: [ 2.3.8, 2.4.10, 2.5.8, 2.6.6, 2.7.2, jruby-9.2.11.1 ]
steps:
- uses: actions/checkout@v2
- name: Setup ruby
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-rubygems.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: windows-2019
strategy:
matrix:
ruby: [ 2.4.10, 2.5.8, 2.6.6, 2.7.1 ]
ruby: [ 2.4.10, 2.5.8, 2.6.6, 2.7.2 ]
steps:
- uses: actions/checkout@v2
- name: Setup ruby
Expand Down
@@ -1,7 +1,7 @@
> GET /info/CFPropertyList
> accept-encoding: gzip
> accept: */*
> user-agent: bundler/2.2.0.rc.1 rubygems/3.2.0.pre1 ruby/2.7.1 (x86_64-pc-linux-gnu) command/lock options/spec_run a230f968f397e7ca
> user-agent: bundler/2.2.0.rc.2 rubygems/3.2.0.rc.1 ruby/2.7.2 (x86_64-pc-linux-gnu) command/lock options/spec_run f4c2f3b927a5f203
> connection: keep-alive
> keep-alive: 30
> host: index.rubygems.org
Binary file not shown.
@@ -1,7 +1,7 @@
> GET /info/ParseTree
> accept-encoding: gzip
> accept: */*
> user-agent: bundler/2.2.0.rc.1 rubygems/3.2.0.pre1 ruby/2.7.1 (x86_64-pc-linux-gnu) command/install options/no_install,retry,spec_run e3718eaa9f72884a
> user-agent: bundler/2.2.0.rc.2 rubygems/3.2.0.rc.1 ruby/2.7.2 (x86_64-pc-linux-gnu) command/lock options/spec_run f4c2f3b927a5f203
> connection: keep-alive
> keep-alive: 30
> host: index.rubygems.org
Binary file not shown.
@@ -1,7 +1,7 @@
> GET /info/RubyInline
> accept-encoding: gzip
> accept: */*
> user-agent: bundler/2.2.0.rc.1 rubygems/3.2.0.pre1 ruby/2.7.1 (x86_64-pc-linux-gnu) command/install options/no_install,retry,spec_run e3718eaa9f72884a
> user-agent: bundler/2.2.0.rc.2 rubygems/3.2.0.rc.1 ruby/2.7.2 (x86_64-pc-linux-gnu) command/lock options/spec_run f4c2f3b927a5f203
> connection: keep-alive
> keep-alive: 30
> host: index.rubygems.org
Binary file not shown.
@@ -1,7 +1,7 @@
> GET /info/SexpProcessor
> accept-encoding: gzip
> accept: */*
> user-agent: bundler/2.2.0.rc.1 rubygems/3.2.0.pre1 ruby/2.7.1 (x86_64-pc-linux-gnu) command/install options/no_install,retry,spec_run e3718eaa9f72884a
> user-agent: bundler/2.2.0.rc.2 rubygems/3.2.0.rc.1 ruby/2.7.2 (x86_64-pc-linux-gnu) command/lock options/spec_run f4c2f3b927a5f203
> connection: keep-alive
> keep-alive: 30
> host: index.rubygems.org
Binary file not shown.
@@ -1,7 +1,7 @@
> GET /info/ZenTest
> accept-encoding: gzip
> accept: */*
> user-agent: bundler/2.2.0.rc.1 rubygems/3.2.0.pre1 ruby/2.7.1 (x86_64-pc-linux-gnu) command/install options/no_install,retry,spec_run e3718eaa9f72884a
> user-agent: bundler/2.2.0.rc.2 rubygems/3.2.0.rc.1 ruby/2.7.2 (x86_64-pc-linux-gnu) command/lock options/spec_run f4c2f3b927a5f203
> connection: keep-alive
> keep-alive: 30
> host: index.rubygems.org
Binary file not shown.
@@ -1,7 +1,7 @@
> GET /info/abstract
> accept-encoding: gzip
> accept: */*
> user-agent: bundler/2.2.0.rc.1 rubygems/3.2.0.pre1 ruby/2.7.1 (x86_64-pc-linux-gnu) command/lock options/spec_run a230f968f397e7ca
> user-agent: bundler/2.2.0.rc.2 rubygems/3.2.0.rc.1 ruby/2.7.2 (x86_64-pc-linux-gnu) command/lock options/spec_run f4c2f3b927a5f203
> connection: keep-alive
> keep-alive: 30
> host: index.rubygems.org
Binary file not shown.
@@ -1,7 +1,7 @@
> GET /info/actioncable
> accept-encoding: gzip
> accept: */*
> user-agent: bundler/2.2.0.rc.1 rubygems/3.2.0.pre1 ruby/2.7.1 (x86_64-pc-linux-gnu) command/lock options/spec_run a230f968f397e7ca
> user-agent: bundler/2.2.0.rc.2 rubygems/3.2.0.rc.1 ruby/2.7.2 (x86_64-pc-linux-gnu) command/lock options/spec_run f4c2f3b927a5f203
> connection: keep-alive
> keep-alive: 30
> host: index.rubygems.org
Binary file not shown.
@@ -1,7 +1,7 @@
> GET /info/actionmailbox
> accept-encoding: gzip
> accept: */*
> user-agent: bundler/2.2.0.rc.1 rubygems/3.2.0.pre1 ruby/2.7.1 (x86_64-pc-linux-gnu) command/lock options/spec_run a230f968f397e7ca
> user-agent: bundler/2.2.0.rc.2 rubygems/3.2.0.rc.1 ruby/2.7.2 (x86_64-pc-linux-gnu) command/lock options/spec_run f4c2f3b927a5f203
> connection: keep-alive
> keep-alive: 30
> host: index.rubygems.org
Binary file not shown.
@@ -1,7 +1,7 @@
> GET /info/actionmailer
> accept-encoding: gzip
> accept: */*
> user-agent: bundler/2.2.0.rc.1 rubygems/3.2.0.pre1 ruby/2.7.1 (x86_64-pc-linux-gnu) command/lock options/spec_run a230f968f397e7ca
> user-agent: bundler/2.2.0.rc.2 rubygems/3.2.0.rc.1 ruby/2.7.2 (x86_64-pc-linux-gnu) command/lock options/spec_run f4c2f3b927a5f203
> connection: keep-alive
> keep-alive: 30
> host: index.rubygems.org
Binary file not shown.
@@ -1,7 +1,7 @@
> GET /info/actionpack
> accept-encoding: gzip
> accept: */*
> user-agent: bundler/2.2.0.rc.1 rubygems/3.2.0.pre1 ruby/2.7.1 (x86_64-pc-linux-gnu) command/lock options/spec_run a230f968f397e7ca
> user-agent: bundler/2.2.0.rc.2 rubygems/3.2.0.rc.1 ruby/2.7.2 (x86_64-pc-linux-gnu) command/lock options/spec_run f4c2f3b927a5f203
> connection: keep-alive
> keep-alive: 30
> host: index.rubygems.org
Binary file not shown.
@@ -1,7 +1,7 @@
> GET /info/actiontext
> accept-encoding: gzip
> accept: */*
> user-agent: bundler/2.2.0.rc.1 rubygems/3.2.0.pre1 ruby/2.7.1 (x86_64-pc-linux-gnu) command/lock options/spec_run a230f968f397e7ca
> user-agent: bundler/2.2.0.rc.2 rubygems/3.2.0.rc.1 ruby/2.7.2 (x86_64-pc-linux-gnu) command/lock options/spec_run f4c2f3b927a5f203
> connection: keep-alive
> keep-alive: 30
> host: index.rubygems.org
Binary file not shown.
@@ -1,7 +1,7 @@
> GET /info/actionview
> accept-encoding: gzip
> accept: */*
> user-agent: bundler/2.2.0.rc.1 rubygems/3.2.0.pre1 ruby/2.7.1 (x86_64-pc-linux-gnu) command/lock options/spec_run a230f968f397e7ca
> user-agent: bundler/2.2.0.rc.2 rubygems/3.2.0.rc.1 ruby/2.7.2 (x86_64-pc-linux-gnu) command/lock options/spec_run f4c2f3b927a5f203
> connection: keep-alive
> keep-alive: 30
> host: index.rubygems.org
Binary file not shown.
@@ -1,7 +1,7 @@
> GET /info/actionwebservice
> accept-encoding: gzip
> accept: */*
> user-agent: bundler/2.2.0.rc.1 rubygems/3.2.0.pre1 ruby/2.7.1 (x86_64-pc-linux-gnu) command/lock options/spec_run a230f968f397e7ca
> user-agent: bundler/2.2.0.rc.2 rubygems/3.2.0.rc.1 ruby/2.7.2 (x86_64-pc-linux-gnu) command/lock options/spec_run f4c2f3b927a5f203
> connection: keep-alive
> keep-alive: 30
> host: index.rubygems.org
Binary file not shown.
@@ -1,7 +1,7 @@
> GET /info/activejob
> accept-encoding: gzip
> accept: */*
> user-agent: bundler/2.2.0.rc.1 rubygems/3.2.0.pre1 ruby/2.7.1 (x86_64-pc-linux-gnu) command/lock options/spec_run a230f968f397e7ca
> user-agent: bundler/2.2.0.rc.2 rubygems/3.2.0.rc.1 ruby/2.7.2 (x86_64-pc-linux-gnu) command/lock options/spec_run f4c2f3b927a5f203
> connection: keep-alive
> keep-alive: 30
> host: index.rubygems.org
Binary file not shown.
@@ -1,7 +1,7 @@
> GET /info/activemodel-globalid
> accept-encoding: gzip
> accept: */*
> user-agent: bundler/2.2.0.rc.1 rubygems/3.2.0.pre1 ruby/2.7.1 (x86_64-pc-linux-gnu) command/lock options/spec_run a230f968f397e7ca
> user-agent: bundler/2.2.0.rc.2 rubygems/3.2.0.rc.1 ruby/2.7.2 (x86_64-pc-linux-gnu) command/lock options/spec_run f4c2f3b927a5f203
> connection: keep-alive
> keep-alive: 30
> host: index.rubygems.org
Binary file not shown.
@@ -1,7 +1,7 @@
> GET /info/activemodel-serializers-xml
> accept-encoding: gzip
> accept: */*
> user-agent: bundler/2.2.0.rc.1 rubygems/3.2.0.pre1 ruby/2.7.1 (x86_64-pc-linux-gnu) command/lock options/spec_run a230f968f397e7ca
> user-agent: bundler/2.2.0.rc.2 rubygems/3.2.0.rc.1 ruby/2.7.2 (x86_64-pc-linux-gnu) command/lock options/spec_run f4c2f3b927a5f203
> connection: keep-alive
> keep-alive: 30
> host: index.rubygems.org
Binary file not shown.
@@ -1,7 +1,7 @@
> GET /info/activemodel
> accept-encoding: gzip
> accept: */*
> user-agent: bundler/2.2.0.rc.1 rubygems/3.2.0.pre1 ruby/2.7.1 (x86_64-pc-linux-gnu) command/lock options/spec_run a230f968f397e7ca
> user-agent: bundler/2.2.0.rc.2 rubygems/3.2.0.rc.1 ruby/2.7.2 (x86_64-pc-linux-gnu) command/lock options/spec_run f4c2f3b927a5f203
> connection: keep-alive
> keep-alive: 30
> host: index.rubygems.org
Binary file not shown.
@@ -1,7 +1,7 @@
> GET /info/activerecord-deprecated_finders
> accept-encoding: gzip
> accept: */*
> user-agent: bundler/2.2.0.rc.1 rubygems/3.2.0.pre1 ruby/2.7.1 (x86_64-pc-linux-gnu) command/lock options/spec_run a230f968f397e7ca
> user-agent: bundler/2.2.0.rc.2 rubygems/3.2.0.rc.1 ruby/2.7.2 (x86_64-pc-linux-gnu) command/lock options/spec_run f4c2f3b927a5f203
> connection: keep-alive
> keep-alive: 30
> host: index.rubygems.org
Binary file not shown.
@@ -1,7 +1,7 @@
> GET /info/activerecord
> accept-encoding: gzip
> accept: */*
> user-agent: bundler/2.2.0.rc.1 rubygems/3.2.0.pre1 ruby/2.7.1 (x86_64-pc-linux-gnu) command/lock options/spec_run a230f968f397e7ca
> user-agent: bundler/2.2.0.rc.2 rubygems/3.2.0.rc.1 ruby/2.7.2 (x86_64-pc-linux-gnu) command/lock options/spec_run f4c2f3b927a5f203
> connection: keep-alive
> keep-alive: 30
> host: index.rubygems.org
Binary file not shown.
@@ -1,7 +1,7 @@
> GET /info/activeresource
> accept-encoding: gzip
> accept: */*
> user-agent: bundler/2.2.0.rc.1 rubygems/3.2.0.pre1 ruby/2.7.1 (x86_64-pc-linux-gnu) command/lock options/spec_run a230f968f397e7ca
> user-agent: bundler/2.2.0.rc.2 rubygems/3.2.0.rc.1 ruby/2.7.2 (x86_64-pc-linux-gnu) command/lock options/spec_run f4c2f3b927a5f203
> connection: keep-alive
> keep-alive: 30
> host: index.rubygems.org
Binary file not shown.
@@ -1,7 +1,7 @@
> GET /info/activestorage
> accept-encoding: gzip
> accept: */*
> user-agent: bundler/2.2.0.rc.1 rubygems/3.2.0.pre1 ruby/2.7.1 (x86_64-pc-linux-gnu) command/lock options/spec_run a230f968f397e7ca
> user-agent: bundler/2.2.0.rc.2 rubygems/3.2.0.rc.1 ruby/2.7.2 (x86_64-pc-linux-gnu) command/lock options/spec_run f4c2f3b927a5f203
> connection: keep-alive
> keep-alive: 30
> host: index.rubygems.org
Binary file not shown.
@@ -1,7 +1,7 @@
> GET /info/activesupport
> accept-encoding: gzip
> accept: */*
> user-agent: bundler/2.2.0.rc.1 rubygems/3.2.0.pre1 ruby/2.7.1 (x86_64-pc-linux-gnu) command/install options/no_install,retry,spec_run e3718eaa9f72884a
> user-agent: bundler/2.2.0.rc.2 rubygems/3.2.0.rc.1 ruby/2.7.2 (x86_64-pc-linux-gnu) command/lock options/spec_run f4c2f3b927a5f203
> connection: keep-alive
> keep-alive: 30
> host: index.rubygems.org
Binary file not shown.
@@ -1,7 +1,7 @@
> GET /info/adamantium
> accept-encoding: gzip
> accept: */*
> user-agent: bundler/2.2.0.rc.1 rubygems/3.2.0.pre1 ruby/2.7.1 (x86_64-pc-linux-gnu) command/lock options/spec_run a230f968f397e7ca
> user-agent: bundler/2.2.0.rc.2 rubygems/3.2.0.rc.1 ruby/2.7.2 (x86_64-pc-linux-gnu) command/lock options/spec_run f4c2f3b927a5f203
> connection: keep-alive
> keep-alive: 30
> host: index.rubygems.org
Binary file not shown.
@@ -1,7 +1,7 @@
> GET /info/addressable
> accept-encoding: gzip
> accept: */*
> user-agent: bundler/2.2.0.rc.1 rubygems/3.2.0.pre1 ruby/2.7.1 (x86_64-pc-linux-gnu) command/lock options/spec_run 9e47418fa273061f
> user-agent: bundler/2.2.0.rc.2 rubygems/3.2.0.rc.1 ruby/2.7.2 (x86_64-pc-linux-gnu) command/lock options/spec_run de9f25ebb3287855
> connection: keep-alive
> keep-alive: 30
> host: index.rubygems.org
Binary file not shown.
@@ -1,7 +1,7 @@
> GET /info/arel
> accept-encoding: gzip
> accept: */*
> user-agent: bundler/2.2.0.rc.1 rubygems/3.2.0.pre1 ruby/2.7.1 (x86_64-pc-linux-gnu) command/lock options/spec_run a230f968f397e7ca
> user-agent: bundler/2.2.0.rc.2 rubygems/3.2.0.rc.1 ruby/2.7.2 (x86_64-pc-linux-gnu) command/lock options/spec_run f4c2f3b927a5f203
> connection: keep-alive
> keep-alive: 30
> host: index.rubygems.org
Binary file not shown.
@@ -1,7 +1,7 @@
> GET /info/ast
> accept-encoding: gzip
> accept: */*
> user-agent: bundler/2.2.0.rc.1 rubygems/3.2.0.pre1 ruby/2.7.1 (x86_64-pc-linux-gnu) command/lock options/spec_run a230f968f397e7ca
> user-agent: bundler/2.2.0.rc.2 rubygems/3.2.0.rc.1 ruby/2.7.2 (x86_64-pc-linux-gnu) command/lock options/spec_run f4c2f3b927a5f203
> connection: keep-alive
> keep-alive: 30
> host: index.rubygems.org
Binary file not shown.
@@ -1,7 +1,7 @@
> GET /info/astrolabe
> accept-encoding: gzip
> accept: */*
> user-agent: bundler/2.2.0.rc.1 rubygems/3.2.0.pre1 ruby/2.7.1 (x86_64-pc-linux-gnu) command/lock options/spec_run a230f968f397e7ca
> user-agent: bundler/2.2.0.rc.2 rubygems/3.2.0.rc.1 ruby/2.7.2 (x86_64-pc-linux-gnu) command/lock options/spec_run f4c2f3b927a5f203
> connection: keep-alive
> keep-alive: 30
> host: index.rubygems.org
Binary file not shown.
@@ -1,7 +1,7 @@
> GET /info/atomic
> accept-encoding: gzip
> accept: */*
> user-agent: bundler/2.2.0.rc.1 rubygems/3.2.0.pre1 ruby/2.7.1 (x86_64-pc-linux-gnu) command/install options/no_install,retry,spec_run e3718eaa9f72884a
> user-agent: bundler/2.2.0.rc.2 rubygems/3.2.0.rc.1 ruby/2.7.2 (x86_64-pc-linux-gnu) command/lock options/spec_run f4c2f3b927a5f203
> connection: keep-alive
> keep-alive: 30
> host: index.rubygems.org
Binary file not shown.

0 comments on commit 8cecec2

Please sign in to comment.