From b1329e6615876465bbf6557c3e4462f3cdeb0f60 Mon Sep 17 00:00:00 2001 From: Matt Date: Mon, 26 Aug 2024 09:37:09 +0100 Subject: [PATCH] Run CI against `main` branch of Faraday. (#46) This allows to test against new, unreleased versions of Faraday so that we can release faraday and faraday-net_http in tandem. --- Gemfile | 2 ++ faraday-net_http.gemspec | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index e1c75e6..88df032 100644 --- a/Gemfile +++ b/Gemfile @@ -3,6 +3,8 @@ source 'https://rubygems.org' gemspec +gem 'faraday', github: 'lostisland/faraday' + gem 'rake', '~> 13.0' gem 'rspec', '~> 3.0' gem 'simplecov' diff --git a/faraday-net_http.gemspec b/faraday-net_http.gemspec index 6bf20a9..b4ec314 100644 --- a/faraday-net_http.gemspec +++ b/faraday-net_http.gemspec @@ -25,6 +25,5 @@ Gem::Specification.new do |spec| spec.files = Dir.glob('lib/**/*') + %w[README.md LICENSE.md] spec.require_paths = ['lib'] - spec.add_development_dependency 'faraday', '>= 2.5' spec.add_runtime_dependency 'net-http' end