From 6e77ab93f3f724dea7f741eee932f177ae5ee97a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 21 May 2020 21:10:24 +0000 Subject: [PATCH] Update activeresource requirement from ~> 3.0 to >= 3, < 6 Updates the requirements on [activeresource](http://www.rubyonrails.org) to permit the latest version. Signed-off-by: dependabot[bot] --- Gemfile.lock | 39 ++++++++++++++++++++++++++------------- dupe.gemspec | 2 +- 2 files changed, 27 insertions(+), 14 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index d7b927d..df85baa 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,24 +2,33 @@ PATH remote: . specs: dupe (1.0.1) - activeresource (~> 3.0) + activeresource (>= 3, < 6) GEM remote: http://rubygems.org/ specs: - activemodel (3.2.2) - activesupport (= 3.2.2) - builder (~> 3.0.0) - activeresource (3.2.2) - activemodel (= 3.2.2) - activesupport (= 3.2.2) - activesupport (3.2.2) - i18n (~> 0.6) - multi_json (~> 1.0) - builder (3.0.0) + activemodel (6.0.3.1) + activesupport (= 6.0.3.1) + activemodel-serializers-xml (1.0.2) + activemodel (> 5.x) + activesupport (> 5.x) + builder (~> 3.1) + activeresource (5.1.1) + activemodel (>= 5.0, < 7) + activemodel-serializers-xml (~> 1.0) + activesupport (>= 5.0, < 7) + activesupport (6.0.3.1) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 0.7, < 2) + minitest (~> 5.1) + tzinfo (~> 1.1) + zeitwerk (~> 2.2, >= 2.2.2) + builder (3.2.4) + concurrent-ruby (1.1.6) diff-lcs (1.1.2) - i18n (0.6.0) - multi_json (1.1.0) + i18n (1.8.2) + concurrent-ruby (~> 1.0) + minitest (5.14.1) rspec (2.6.0) rspec-core (~> 2.6.0) rspec-expectations (~> 2.6.0) @@ -28,6 +37,10 @@ GEM rspec-expectations (2.6.0) diff-lcs (~> 1.1.2) rspec-mocks (2.6.0) + thread_safe (0.3.6) + tzinfo (1.2.7) + thread_safe (~> 0.1) + zeitwerk (2.3.0) PLATFORMS ruby diff --git a/dupe.gemspec b/dupe.gemspec index 3111192..ca6b25a 100644 --- a/dupe.gemspec +++ b/dupe.gemspec @@ -10,6 +10,6 @@ Gem::Specification.new do |s| s.files = Dir["lib/**/*"] s.test_files = Dir["spec/**/*"] - s.add_dependency "activeresource", "~> 3.0" + s.add_dependency "activeresource", ">= 3", "< 6" s.add_development_dependency "rspec" end