From 185001f00ebdb771983b18b9f9e1ff739749bc6c Mon Sep 17 00:00:00 2001 From: mkmn Date: Tue, 2 Feb 2021 12:28:32 +0900 Subject: [PATCH 1/2] Update the gem to run on ruby 3.0. --- Gemfile.lock | 38 +++++++++++++++++++++++++------------- 1 file changed, 25 insertions(+), 13 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 7adc8b5..b750a35 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -21,13 +21,24 @@ GEM byebug (11.0.1) coderay (1.1.2) concurrent-ruby (1.1.5) - crack (0.4.3) - safe_yaml (~> 1.0.0) + crack (0.4.5) + rexml diff-lcs (1.3) dotenv (2.7.5) - faraday (0.17.1) + faraday (1.4.2) + faraday-em_http (~> 1.0) + faraday-em_synchrony (~> 1.0) + faraday-excon (~> 1.1) + faraday-net_http (~> 1.0) + faraday-net_http_persistent (~> 1.1) multipart-post (>= 1.2, < 3) - ffi (1.11.3) + ruby2_keywords (>= 0.0.4) + faraday-em_http (1.0.0) + faraday-em_synchrony (1.0.0) + faraday-excon (1.1.0) + faraday-net_http (1.0.1) + faraday-net_http_persistent (1.1.0) + ffi (1.14.2) formatador (0.2.5) guard (2.16.1) formatador (>= 0.2.4) @@ -50,17 +61,17 @@ GEM guard-rubocop (1.3.0) guard (~> 2.0) rubocop (~> 0.20) - hashdiff (1.0.0) + hashdiff (1.0.1) i18n (1.7.0) concurrent-ruby (~> 1.0) jaro_winkler (1.5.4) - listen (3.2.1) + listen (3.4.1) rb-fsevent (~> 0.10, >= 0.10.3) rb-inotify (~> 0.9, >= 0.9.10) lumberjack (1.0.13) method_source (0.9.2) mini_portile2 (2.4.0) - minitest (5.13.0) + minitest (5.14.3) multipart-post (2.1.1) nenv (0.3.0) nokogiri (1.10.8) @@ -77,12 +88,13 @@ GEM pry-byebug (3.7.0) byebug (~> 11.0) pry (~> 0.10) - public_suffix (4.0.1) + public_suffix (4.0.6) rainbow (3.0.0) rake (13.0.1) - rb-fsevent (0.10.3) - rb-inotify (0.10.0) + rb-fsevent (0.10.4) + rb-inotify (0.10.1) ffi (~> 1.0) + rexml (3.2.4) rspec (3.9.0) rspec-core (~> 3.9.0) rspec-expectations (~> 3.9.0) @@ -104,16 +116,16 @@ GEM ruby-progressbar (~> 1.7) unicode-display_width (>= 1.4.0, < 1.7) ruby-progressbar (1.10.1) + ruby2_keywords (0.0.4) rubyzip (2.0.0) - safe_yaml (1.0.5) shellany (0.0.1) thor (0.20.3) thread_safe (0.3.6) tzinfo (1.2.5) thread_safe (~> 0.1) unicode-display_width (1.6.0) - vcr (5.0.0) - webmock (3.7.6) + vcr (6.0.0) + webmock (3.11.2) addressable (>= 2.3.6) crack (>= 0.3.2) hashdiff (>= 0.4.0, < 2.0.0) From 179b43f5f0674fd0c5195c6bdf4822ff34c0d089 Mon Sep 17 00:00:00 2001 From: mkmn Date: Mon, 14 Jun 2021 13:24:56 +0900 Subject: [PATCH 2/2] update Github Actions config --- .github/workflows/test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 07f25c7..55ab002 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,6 +19,7 @@ jobs: ruby-version: - 2.6 - 2.7 + - 3.0 steps: - uses: actions/checkout@v2