Skip to content

Commit 7306b20

Browse files
committed
Revert "Support Ruby 3.4. Drop support for Rails 7.0, Ruby 3.1"
This reverts commit a740b33.
1 parent a740b33 commit 7306b20

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@ jobs:
77
strategy:
88
matrix:
99
ruby-version:
10+
- '3.1'
1011
- '3.2'
1112
- '3.3'
12-
- '3.4'
1313
gemfile:
14+
- gemfiles/Gemfile.rails70
1415
- gemfiles/Gemfile.rails71
1516
- gemfiles/Gemfile.rails72
1617
- gemfiles/Gemfile.rails80

CHANGELOG.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
## [Unreleased]
2-
### Fixed
3-
* Support Ruby 3.4. Drop support for Rails 7.0, Ruby 3.1
2+
* no unreleased changes *
43

54
## 6.0.3 / 2025-06-11
65
### Fixed

gemfiles/Gemfile.rails70

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
source 'https://rubygems.org'
2+
3+
gemspec path: '..'
4+
5+
gem 'rails', '~> 7.0.0'
6+
7+
gem 'bundler'
8+
gem 'guard'
9+
gem 'guard-minitest'
10+
gem 'guard-rubocop'
11+
gem 'minitest', '>= 5.0.0'
12+
gem 'ndr_dev_support', '>= 6.0', '< 8.0'
13+
gem 'github-linguist'
14+
gem 'pry'
15+
gem 'rake'
16+
gem 'terminal-notifier-guard' if RUBY_PLATFORM =~ /darwin/
17+
18+
# Latest concurrent-ruby breaks Rails < 7.1. See https://github.com/rails/rails/issues/54260
19+
gem 'concurrent-ruby', '1.3.4'

0 commit comments

Comments
 (0)