Skip to content

Commit 638f93b

Browse files
committed
Drop 2.5 support, add more versions
1 parent 4e31ac9 commit 638f93b

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/test.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,12 @@ jobs:
88
fail-fast: false
99
matrix:
1010
ruby-version:
11-
- '2.5'
1211
- '2.6'
1312
- '2.7'
13+
- '2.8'
14+
- '2.9'
15+
- '3.0'
16+
- '3.1'
1417
- ruby-head
1518
- jruby-head
1619
- truffleruby-head

jsonpath.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ require File.join(File.dirname(__FILE__), 'lib', 'jsonpath', 'version')
55
Gem::Specification.new do |s|
66
s.name = 'jsonpath'
77
s.version = JsonPath::VERSION
8-
s.required_ruby_version = '>= 2.5'
8+
s.required_ruby_version = '>= 2.6'
99
s.authors = ['Joshua Hull', 'Gergely Brautigam']
1010
s.summary = 'Ruby implementation of http://goessner.net/articles/JsonPath/'
1111
s.description = 'Ruby implementation of http://goessner.net/articles/JsonPath/.'

0 commit comments

Comments
 (0)