From b872bab6cffa744f79298d1b7c0096b319814503 Mon Sep 17 00:00:00 2001 From: Duncan Smith Date: Thu, 11 Jul 2024 09:38:03 +0100 Subject: [PATCH] Bump minimum ruby version for dependabot I believe dependabot will use the oldest ruby version specified. However nokogiri needs atleast version 3.0. Make this the minimum version --- hermod.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hermod.gemspec b/hermod.gemspec index 4fc5922..ca67665 100644 --- a/hermod.gemspec +++ b/hermod.gemspec @@ -20,7 +20,7 @@ Gem::Specification.new do |spec| spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] - spec.required_ruby_version = ">= 2.5" + spec.required_ruby_version = ">= 3.0" spec.add_runtime_dependency "libxml-ruby", "~> 4.1" spec.add_runtime_dependency "activesupport", "> 3.2"