From 1958cb1ce2fcfd91c6232b5acbd38de7196676a4 Mon Sep 17 00:00:00 2001 From: Fabian Winkler Date: Fri, 5 Jul 2024 17:08:44 +0200 Subject: [PATCH] Add `logger` as explicit dependency (#1573) --- faraday.gemspec | 1 + 1 file changed, 1 insertion(+) diff --git a/faraday.gemspec b/faraday.gemspec index 347941f7..65063497 100644 --- a/faraday.gemspec +++ b/faraday.gemspec @@ -22,6 +22,7 @@ Gem::Specification.new do |spec| # This way, we can release minor versions of the adapter with "breaking" changes for older versions of Faraday # and then bump the version requirement on the next compatible version of faraday. spec.add_dependency 'faraday-net_http', '>= 2.0', '< 3.2' + spec.add_dependency 'logger' # Includes `examples` and `spec` to allow external adapter gems to run Faraday unit and integration tests spec.files = Dir['CHANGELOG.md', '{examples,lib,spec}/**/*', 'LICENSE.md', 'Rakefile', 'README.md']