From 9e5c8a113f765cdd06bcf352369b2501e00fea80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Wed, 11 Sep 2024 08:31:10 +0200 Subject: [PATCH] Add json as an explicit dependency (#1589) --- faraday.gemspec | 1 + 1 file changed, 1 insertion(+) diff --git a/faraday.gemspec b/faraday.gemspec index 06fb2abd..ae22a89e 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.4' + spec.add_dependency 'json' spec.add_dependency 'logger' # Includes `examples` and `spec` to allow external adapter gems to run Faraday unit and integration tests