From 180e8882d059c888effef5938726153b3270a8f8 Mon Sep 17 00:00:00 2001 From: "Daniel (dB.) Doubrovkine" Date: Thu, 1 Feb 2024 10:26:49 -0500 Subject: [PATCH] Require faraday-follow_redirects. --- .rubocop_todo.yml | 2 +- Gemfile | 1 - hyperclient.gemspec | 1 + 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index 11596b3..0021c96 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -1,6 +1,6 @@ # This configuration was generated by # `rubocop --auto-gen-config` -# on 2024-02-01 15:09:00 UTC using RuboCop version 1.48.1. +# on 2024-02-01 15:28:54 UTC using RuboCop version 1.48.1. # The point is for the user to remove these configuration records # one by one as the offenses are removed from the code base. # Note that changes in the inspected code, or installation of new diff --git a/Gemfile b/Gemfile index 91fc703..34cc726 100644 --- a/Gemfile +++ b/Gemfile @@ -23,7 +23,6 @@ end group :test do gem 'danger-changelog', '~> 0.6.0' gem 'danger-toc', '~> 0.2.0' - gem 'faraday-follow_redirects' gem 'minitest' gem 'mocha' gem 'rack-test' diff --git a/hyperclient.gemspec b/hyperclient.gemspec index 68f5601..64a978d 100644 --- a/hyperclient.gemspec +++ b/hyperclient.gemspec @@ -14,6 +14,7 @@ Gem::Specification.new do |gem| gem.add_dependency 'addressable' gem.add_dependency 'faraday', '>= 2' + gem.add_dependency 'faraday-follow_redirects' gem.add_dependency 'faraday_hal_middleware', '>= 0.2' gem.metadata['rubygems_mfa_required'] = 'true' end