From 2a2b16771d5acfa956bc00f5c3d386e0012fad84 Mon Sep 17 00:00:00 2001 From: Eric Amorde Date: Sun, 15 Oct 2023 14:08:15 -0700 Subject: [PATCH] Bump minimum Ruby to 2.7.4 --- .github/workflows/Specs.yml | 2 +- cocoapods-downloader.gemspec | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/Specs.yml b/.github/workflows/Specs.yml index d524e58..d4dbb89 100644 --- a/.github/workflows/Specs.yml +++ b/.github/workflows/Specs.yml @@ -6,7 +6,7 @@ jobs: fail-fast: false matrix: os: [macos-10.15] - ruby: [2.3, 2.5, 2.6, 2.7, 3.0.0] + ruby: [2.7, 3.0.0] name: ${{ matrix.os }} / Ruby ${{ matrix.ruby }} runs-on: ${{ matrix.os }} diff --git a/cocoapods-downloader.gemspec b/cocoapods-downloader.gemspec index 908639d..b14e797 100644 --- a/cocoapods-downloader.gemspec +++ b/cocoapods-downloader.gemspec @@ -15,9 +15,6 @@ Gem::Specification.new do |s| s.files = Dir["lib/**/*.rb"] + %w{ README.markdown LICENSE } s.require_paths = %w{ lib } - ## Make sure you can build the gem on older versions of RubyGems too: - s.rubygems_version = "1.6.2" - s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= - s.required_ruby_version = '>= 2.3.3' + s.required_ruby_version = '>= 2.7.4' s.specification_version = 3 if s.respond_to? :specification_version end