From a7ff1ae1474cdbac117fe3d247b9d1c80432b401 Mon Sep 17 00:00:00 2001 From: Ankitha Damodara Date: Thu, 21 Mar 2024 10:43:38 +0000 Subject: [PATCH] Allow active_support upto 7.3 why? We need this to resolve the raisl 7.1 dependency --- transferwise.gemspec | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/transferwise.gemspec b/transferwise.gemspec index f6d9b95..0d2238a 100644 --- a/transferwise.gemspec +++ b/transferwise.gemspec @@ -27,11 +27,12 @@ Gem::Specification.new do |spec| spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] - spec.add_runtime_dependency "activesupport", ">= 3.0.0", "< 7.1" + spec.add_runtime_dependency "activesupport", ">= 3.0.0", "< 7.3" spec.add_runtime_dependency "oauth2", ">= 1.4.0", "< 2.0" spec.add_runtime_dependency "rest-client", ">= 1.4", "< 4.0" spec.add_development_dependency "bundler", "~> 2.2" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" + spec.add_development_dependency "webmock", "~> 3.0" -end +end \ No newline at end of file