From c5fc9b128074e9d8f328af3b98243b52cb1339dd Mon Sep 17 00:00:00 2001 From: Nate Berkopec Date: Wed, 6 Dec 2023 08:31:44 +0900 Subject: [PATCH] Drop Ruby 2.6 --- .github/workflows/ci.yml | 2 +- Gemfile | 2 +- rack-mini-profiler.gemspec | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0cb2548d..73ebe037 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: strategy: fail-fast: false matrix: - ruby: ["3.2", "3.1", "3.0", "2.7", "2.6"] + ruby: ["3.2", "3.1", "3.0", "2.7"] redis: ["5.x"] steps: - uses: actions/checkout@v3 diff --git a/Gemfile b/Gemfile index 416955c2..875ea3ea 100644 --- a/Gemfile +++ b/Gemfile @@ -1,7 +1,7 @@ # frozen_string_literal: true source 'http://rubygems.org' -ruby '>= 2.6.0' +ruby '>= 2.7.0' gemspec diff --git a/rack-mini-profiler.gemspec b/rack-mini-profiler.gemspec index 9c5f52eb..870c6113 100644 --- a/rack-mini-profiler.gemspec +++ b/rack-mini-profiler.gemspec @@ -21,7 +21,7 @@ Gem::Specification.new do |s| "CHANGELOG.md" ] s.add_runtime_dependency 'rack', '>= 1.2.0' - s.required_ruby_version = '>= 2.6.0' + s.required_ruby_version = '>= 2.7.0' s.metadata = { 'source_code_uri' => Rack::MiniProfiler::SOURCE_CODE_URI,