From 67b6fa9469a646bfa745fabb22d81ad5a4517d47 Mon Sep 17 00:00:00 2001 From: Joshua Hull Date: Tue, 9 May 2023 09:53:42 +0200 Subject: [PATCH] Drop 2.5 support, add more versions --- .github/workflows/test.yml | 3 ++- jsonpath.gemspec | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 09e92c2..4d48d01 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,9 +8,10 @@ jobs: fail-fast: false matrix: ruby-version: - - '2.5' - '2.6' - '2.7' + - '3.0' + - '3.1' - ruby-head - jruby-head - truffleruby-head diff --git a/jsonpath.gemspec b/jsonpath.gemspec index eb21f8f..9ecd57a 100644 --- a/jsonpath.gemspec +++ b/jsonpath.gemspec @@ -5,7 +5,7 @@ require File.join(File.dirname(__FILE__), 'lib', 'jsonpath', 'version') Gem::Specification.new do |s| s.name = 'jsonpath' s.version = JsonPath::VERSION - s.required_ruby_version = '>= 2.5' + s.required_ruby_version = '>= 2.6' s.authors = ['Joshua Hull', 'Gergely Brautigam'] s.summary = 'Ruby implementation of http://goessner.net/articles/JsonPath/' s.description = 'Ruby implementation of http://goessner.net/articles/JsonPath/.'