Skip to content

Commit 417f50a

Browse files
committed
Drop support for rspec version 3.7
1 parent 3c456e8 commit 417f50a

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.github/workflows/ruby.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,8 @@ jobs:
1919
runs-on: ubuntu-latest
2020
strategy:
2121
matrix:
22-
rspec-minor-versions: [7, 8, 9, 10, 11, 12, 13]
22+
rspec-minor-versions: [8, 9, 10, 11, 12, 13]
2323
ruby-versions: ["3.2", "3.3", "3.4", "4.0"]
24-
exclude:
25-
- ruby-versions: 4.0
26-
rspec-minor-versions: 7
2724
env:
2825
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/rspec_3.${{ matrix.rspec-minor-versions }}.gemfile
2926

Appraisals

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# vim: ft=ruby
22

3-
(7..13).each do |minor|
3+
(8..13).each do |minor|
44
appraise "rspec 3.#{minor}" do
55
gem 'rspec', "3.#{minor}.0"
66
end

flatware-rspec.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ Gem::Specification.new do |s|
2424
s.required_ruby_version = ['>= 3.2', '< 4.1']
2525
s.require_paths = ['lib']
2626
s.add_dependency %(flatware), Flatware::VERSION
27-
s.add_dependency %(rspec), '>= 3.7'
27+
s.add_dependency %(rspec), '>= 3.8'
2828
# s.metadata['rubygems_mfa_required'] = 'true'
2929
end

0 commit comments

Comments
 (0)