From 0b255cae560553a6b01eaa4787f575debeb921de Mon Sep 17 00:00:00 2001 From: Jason Frey Date: Thu, 1 Aug 2024 16:36:38 -0400 Subject: [PATCH] Drop ruby requirement from gemspec The Ruby requirement will ultimately come from whatever version of rubocop we use, so there's no need for us to pin it here. It turns out that rubocop 1.56.3 require Ruby 2.7, but having it here makes it appear like a decision of manageiq-style as opposed to the restriction coming from rubocop itself. --- .github/workflows/ci.yaml | 1 + manageiq-style.gemspec | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6c5eeed..f6e9ad4 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -12,6 +12,7 @@ jobs: strategy: matrix: ruby-version: + - '2.6' - '2.7' - '3.0' - '3.1' diff --git a/manageiq-style.gemspec b/manageiq-style.gemspec index 8e9a626..fafaeae 100644 --- a/manageiq-style.gemspec +++ b/manageiq-style.gemspec @@ -9,7 +9,6 @@ Gem::Specification.new do |spec| spec.description = spec.summary spec.homepage = "https://github.com/ManageIQ/manageiq-style" spec.license = "MIT" - spec.required_ruby_version = Gem::Requirement.new(">= 2.7.0") spec.metadata["homepage_uri"] = spec.homepage spec.metadata["rubygems_mfa_required"] = "true"