From ac687a6e5180be0347dcef997dc523b7a760df39 Mon Sep 17 00:00:00 2001 From: Gabriel Matos de Souza Date: Thu, 10 Nov 2022 16:10:44 -0500 Subject: [PATCH] Fix dependency with http: * Since version 5.0.0 http provides the method mkcalendar to make requests. Since the gem makes use of that method, this version of http is necessary; Ref: https://github.com/httprb/http/pull/660 Please enter the commit message for your changes. Lines starting --- calendav.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calendav.gemspec b/calendav.gemspec index eb2e3bf..463673f 100644 --- a/calendav.gemspec +++ b/calendav.gemspec @@ -24,7 +24,7 @@ Gem::Specification.new do |spec| spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] - spec.add_runtime_dependency "http" + spec.add_runtime_dependency "http", "~> 5.0" spec.add_runtime_dependency "icalendar" spec.add_runtime_dependency "nokogiri"