Skip to content

Commit

Permalink
chore: Drop support for Ruby 3.0
Browse files Browse the repository at this point in the history
Support for ruby 3.0 has ended.
  • Loading branch information
LuukvH committed Jan 14, 2025
1 parent 154c529 commit 6d60326
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ jobs:
strategy:
matrix:
ruby:
- '3.0'
- '3.1'
- '3.2'
- '3.3'
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AllCops:
TargetRubyVersion: 3.0
TargetRubyVersion: 3.1
NewCops: enable

# A top class comment is not needed for this simple gem
Expand Down
2 changes: 1 addition & 1 deletion rspec-github.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
spec.description = 'Formatter for RSpec to show errors in GitHub action annotations'
spec.homepage = 'https://drieam.github.io/rspec-github'
spec.license = 'MIT'
spec.required_ruby_version = Gem::Requirement.new('>= 3.0')
spec.required_ruby_version = Gem::Requirement.new('>= 3.1')

spec.metadata['allowed_push_host'] = 'https://rubygems.org'
spec.metadata['homepage_uri'] = spec.homepage
Expand Down

0 comments on commit 6d60326

Please sign in to comment.