From ca9c03e7a82c98b52a9ec9a6727745881569a9ad Mon Sep 17 00:00:00 2001 From: Maurice Poirrier Date: Tue, 15 Nov 2022 13:03:27 -0300 Subject: [PATCH] Fix required ruby version This repository uses ruby 2.6 functionalities to work as expected. Specifically Enumerator::Chain on Utils file --- fintoc.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fintoc.gemspec b/fintoc.gemspec index 3cb04d7..b7dd96f 100644 --- a/fintoc.gemspec +++ b/fintoc.gemspec @@ -9,7 +9,7 @@ Gem::Specification.new do |spec| spec.summary = 'The official Ruby client for the Fintoc API.' spec.description = 'The official Ruby client for the Fintoc API.' spec.homepage = 'https://github.com/fintoc-com/fintoc-ruby' - spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0') + spec.required_ruby_version = Gem::Requirement.new('>= 2.6.0') # spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"