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 c1a2e8b commit b2a41c4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 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 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')

Check warning on line 15 in rspec-github.gemspec

View workflow job for this annotation

GitHub Actions / rubocop

[rubocop] rspec-github.gemspec#L15 <Gemspec/RequiredRubyVersion>

`required_ruby_version` and `TargetRubyVersion` (3.0, which may be specified in .rubocop.yml) should be equal.
Raw output
rspec-github.gemspec:15:32: W: Gemspec/RequiredRubyVersion: `required_ruby_version` and `TargetRubyVersion` (3.0, which may be specified in .rubocop.yml) should be equal.

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

0 comments on commit b2a41c4

Please sign in to comment.