From 048692050607886669b5336e469148c07c78c887 Mon Sep 17 00:00:00 2001 From: Marsel Mavletkulov Date: Thu, 29 Aug 2024 14:38:27 -0400 Subject: [PATCH] Fix rubocop offenses in minfraud.gemspec --- CHANGELOG.md | 2 +- minfraud.gemspec | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b0f2cd..285d7ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## v2.7.0 +## v2.7.0-beta.1 * Added support for the new risk reasons outputs in minFraud Factors. The risk reasons output codes and reasons are currently in beta and are subject to diff --git a/minfraud.gemspec b/minfraud.gemspec index eae8241..fcd327c 100644 --- a/minfraud.gemspec +++ b/minfraud.gemspec @@ -22,10 +22,10 @@ Gem::Specification.new do |spec| spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] - spec.add_runtime_dependency 'connection_pool', '~> 2.2' - spec.add_runtime_dependency 'http', '>= 4.3', '< 6.0' - spec.add_runtime_dependency 'maxmind-geoip2', '~> 1.2' - spec.add_runtime_dependency 'simpleidn', '~> 0.1', '>= 0.1.1' + spec.add_dependency 'connection_pool', '~> 2.2' + spec.add_dependency 'http', '>= 4.3', '< 6.0' + spec.add_dependency 'maxmind-geoip2', '~> 1.2' + spec.add_dependency 'simpleidn', '~> 0.1', '>= 0.1.1' spec.add_development_dependency 'bundler', '~> 2.2' spec.add_development_dependency 'rake', '~> 13.0'