Skip to content

Commit

Permalink
Drop Ruby 2.5 and 2.6 support
Browse files Browse the repository at this point in the history
They're EOL. So are 2.7 and 3.0, but I want to leave a 2.x just in case
someone is lagging.

Related: #178
  • Loading branch information
davishmcclurg committed May 25, 2024
1 parent b476026 commit 6798248
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
ruby: [2.5, 2.6, 2.7, 3.0, 3.1, 3.2, 3.3, head, jruby, jruby-head, truffleruby, truffleruby-head]
ruby: [2.7, 3.0, 3.1, 3.2, 3.3, head, jruby, jruby-head, truffleruby, truffleruby-head]
exclude:
- os: ubuntu-latest
ruby: head
Expand Down
2 changes: 1 addition & 1 deletion json_schemer.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.required_ruby_version = '>= 2.5'
spec.required_ruby_version = '>= 2.7'

spec.add_development_dependency "base64"
spec.add_development_dependency "bundler", "~> 2.0"
Expand Down

0 comments on commit 6798248

Please sign in to comment.