File tree 5 files changed +12
-3
lines changed
5 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 54
54
fail-fast : false
55
55
matrix :
56
56
ruby :
57
- - " 3.0"
58
57
- " 3.1"
59
58
- " 3.2"
60
59
- " 3.3"
Original file line number Diff line number Diff line change @@ -33,9 +33,15 @@ Lint/SuppressedException:
33
33
- ' spec/spec_helper.rb'
34
34
- ' support/test_plan.rb'
35
35
36
+ Naming/BlockForwarding :
37
+ EnforcedStyle : explicit
38
+
36
39
Naming/FileName :
37
40
Exclude :
38
41
- ' lib/super_diff/rspec-rails.rb'
39
42
40
43
Naming/VariableNumber :
41
44
Enabled : false
45
+
46
+ Style/ArgumentsForwarding :
47
+ UseAnonymousForwarding : false
Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased]
4
4
5
+ ### Breaking changes
6
+
7
+ - Dropped support for Ruby 3.0, which reached EOL in April 2024. [ #280 ] ( https://github.com/splitwise/super_diff/pull/280 )
8
+
5
9
### Features
6
10
7
11
- Add official Rails 7.1 support. [ #278 ] ( https://github.com/splitwise/super_diff/pull/278 )
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ for more on how to do that.
111
111
## Compatibility
112
112
113
113
` super_diff ` is [ tested] [ gh-actions ] to work with
114
- Ruby >= 3.x ,
114
+ Ruby >= 3.1 ,
115
115
RSpec 3.x,
116
116
and Rails >= 6.1.
117
117
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Gem::Specification.new do |s|
22
22
'rubygems_mfa_required' => 'true' ,
23
23
'source_code_uri' => 'https://github.com/splitwise/super_diff'
24
24
}
25
- s . required_ruby_version = '>= 3.0 '
25
+ s . required_ruby_version = '>= 3.1 '
26
26
27
27
s . files = %w[ README.md super_diff.gemspec ] + Dir [ 'lib/**/*' ]
28
28
s . executables = Dir [ 'exe/**/*' ] . map { |f | File . basename ( f ) }
You can’t perform that action at this time.
0 commit comments