From 20485aff37df190ec491cac9c1a79d1765e13a45 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 17 Mar 2023 03:51:32 +0000 Subject: [PATCH] Update activesupport requirement from ~> 6.0 to >= 6, < 8 Updates the requirements on [activesupport](https://github.com/rails/rails) to permit the latest version. - [Release notes](https://github.com/rails/rails/releases) - [Changelog](https://github.com/rails/rails/blob/v7.0.4.3/activesupport/CHANGELOG.md) - [Commits](https://github.com/rails/rails/compare/v6.0.3.4...v7.0.4.3) --- updated-dependencies: - dependency-name: activesupport dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 23 ++++++++++------------- scrap_kit.gemspec | 2 +- 2 files changed, 11 insertions(+), 14 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 1527edf..5c8b45e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,26 +2,25 @@ PATH remote: . specs: scrap_kit (0.1.16) - activesupport (~> 6.0) + activesupport (>= 6, < 8) watir (~> 6.16.5) webdrivers (~> 4.0) GEM remote: https://rubygems.org/ specs: - activesupport (6.0.3.4) + activesupport (7.0.4.3) concurrent-ruby (~> 1.0, >= 1.0.2) - i18n (>= 0.7, < 2) - minitest (~> 5.1) - tzinfo (~> 1.1) - zeitwerk (~> 2.2, >= 2.2.2) + i18n (>= 1.6, < 2) + minitest (>= 5.1) + tzinfo (~> 2.0) childprocess (3.0.0) - concurrent-ruby (1.1.7) + concurrent-ruby (1.2.2) diff-lcs (1.3) - i18n (1.8.5) + i18n (1.12.0) concurrent-ruby (~> 1.0) mini_portile2 (2.5.1) - minitest (5.14.2) + minitest (5.18.0) nokogiri (1.11.5) mini_portile2 (~> 2.5.0) racc (~> 1.4) @@ -45,9 +44,8 @@ GEM selenium-webdriver (3.142.7) childprocess (>= 0.5, < 4.0) rubyzip (>= 1.2.2) - thread_safe (0.3.6) - tzinfo (1.2.8) - thread_safe (~> 0.1) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) watir (6.16.5) regexp_parser (~> 1.2) selenium-webdriver (~> 3.6) @@ -55,7 +53,6 @@ GEM nokogiri (~> 1.6) rubyzip (>= 1.3.0) selenium-webdriver (>= 3.0, < 4.0) - zeitwerk (2.4.1) PLATFORMS ruby diff --git a/scrap_kit.gemspec b/scrap_kit.gemspec index 41e0d93..2b7bcb2 100644 --- a/scrap_kit.gemspec +++ b/scrap_kit.gemspec @@ -33,5 +33,5 @@ Gem::Specification.new do |spec| spec.add_development_dependency "rspec", "~> 3.0" spec.add_dependency "watir", "~> 6.16.5" spec.add_dependency "webdrivers", "~> 4.0" - spec.add_dependency "activesupport", "~> 6.0" + spec.add_dependency "activesupport", ">= 6", "< 8" end