Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/super_diff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ jobs:
fail-fast: false
matrix:
ruby:
- "3.0"
- "3.1"
- "3.2"
- "3.3"
Expand Down
6 changes: 6 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,15 @@ Lint/SuppressedException:
- 'spec/spec_helper.rb'
- 'support/test_plan.rb'

Naming/BlockForwarding:
EnforcedStyle: explicit

Naming/FileName:
Exclude:
- 'lib/super_diff/rspec-rails.rb'

Naming/VariableNumber:
Enabled: false

Style/ArgumentsForwarding:
UseAnonymousForwarding: false
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## [Unreleased]

### Breaking changes

- Dropped support for Ruby 3.0, which reached EOL in April 2024. [#280](https://github.com/splitwise/super_diff/pull/280)

### Features

- Add official Rails 7.1 support. [#278](https://github.com/splitwise/super_diff/pull/278)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ for more on how to do that.
## Compatibility

`super_diff` is [tested][gh-actions] to work with
Ruby >= 3.x,
Ruby >= 3.1,
RSpec 3.x,
and Rails >= 6.1.

Expand Down
2 changes: 1 addition & 1 deletion super_diff.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Gem::Specification.new do |s|
'rubygems_mfa_required' => 'true',
'source_code_uri' => 'https://github.com/splitwise/super_diff'
}
s.required_ruby_version = '>= 3.0'
s.required_ruby_version = '>= 3.1'

s.files = %w[README.md super_diff.gemspec] + Dir['lib/**/*']
s.executables = Dir['exe/**/*'].map { |f| File.basename(f) }
Expand Down