From b7a49f385a254856f6ff0d20dec65e04ba72a69c Mon Sep 17 00:00:00 2001 From: Rafael Masson Date: Fri, 29 May 2020 15:17:59 -0400 Subject: [PATCH 1/2] Allow using Hashie v4.x See changes: https://github.com/hashie/hashie/blob/master/UPGRADING.md#upgrading-to-400 --- createsend.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/createsend.gemspec b/createsend.gemspec index 400841b..6ab3ff6 100644 --- a/createsend.gemspec +++ b/createsend.gemspec @@ -5,7 +5,7 @@ require File.expand_path('lib/createsend/version') Gem::Specification.new do |s| s.add_runtime_dependency 'json', '>= 1.0' - s.add_runtime_dependency 'hashie', '~> 3.0' + s.add_runtime_dependency 'hashie', '>= 3.0', '< 5' s.add_runtime_dependency 'httparty', '~> 0.14' s.add_development_dependency 'rake', '~> 12.3.3' s.add_development_dependency 'fakeweb', '~> 1.3' From 17678cf3c9fba84d4b4f76cc72e5f280c890bd68 Mon Sep 17 00:00:00 2001 From: Espen Antonsen Date: Mon, 22 Aug 2022 19:01:32 -0300 Subject: [PATCH 2/2] support for hashie v5 --- createsend.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/createsend.gemspec b/createsend.gemspec index 6ab3ff6..298c4d1 100644 --- a/createsend.gemspec +++ b/createsend.gemspec @@ -5,7 +5,7 @@ require File.expand_path('lib/createsend/version') Gem::Specification.new do |s| s.add_runtime_dependency 'json', '>= 1.0' - s.add_runtime_dependency 'hashie', '>= 3.0', '< 5' + s.add_runtime_dependency 'hashie', '>= 3.0', '< 6' s.add_runtime_dependency 'httparty', '~> 0.14' s.add_development_dependency 'rake', '~> 12.3.3' s.add_development_dependency 'fakeweb', '~> 1.3'