Skip to content

Commit

Permalink
Drop Ruby 2.5 support
Browse files Browse the repository at this point in the history
  • Loading branch information
ydah committed Apr 27, 2022
1 parent d297c71 commit 7c341f6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/main.yml
Expand Up @@ -23,7 +23,6 @@ jobs:
strategy:
matrix:
ruby:
- 2.5
- 2.6
- 2.7
- "3.0"
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Expand Up @@ -6,7 +6,7 @@ require:

AllCops:
DisplayCopNames: true
TargetRubyVersion: 2.5
TargetRubyVersion: 2.6
NewCops: disable
Exclude:
- 'vendor/**/*'
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,8 @@

## Master (Unreleased)

* Drop Ruby 2.5 support. ([@ydah][])

## 2.10.0 (2022-04-19)

* Fix a false positive for `RSpec/EmptyExampleGroup` when expectations in case statement. ([@ydah][])
Expand Down
2 changes: 1 addition & 1 deletion rubocop-rspec_rails.gemspec
Expand Up @@ -21,7 +21,7 @@ Gem::Specification.new do |spec|

spec.version = RuboCop::RSpec::Version::STRING
spec.platform = Gem::Platform::RUBY
spec.required_ruby_version = '>= 2.5.0'
spec.required_ruby_version = '>= 2.6.0'

spec.require_paths = ['lib']
spec.files = Dir[
Expand Down

0 comments on commit 7c341f6

Please sign in to comment.