Skip to content

Commit f8c5154

Browse files
authored
Support Rails 7.2 (#495)
Add Rails 7.2 to the test matrix
1 parent 5d8cb11 commit f8c5154

File tree

4 files changed

+30
-2
lines changed

4 files changed

+30
-2
lines changed

Appraisals

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,13 @@ appraise "rails7.1" do
2929
gem "spring-watcher-listen", "~> 2.0.0"
3030
gem "sqlite3", "~> 1.4"
3131
end
32+
33+
appraise "rails7.2" do
34+
gem "byebug"
35+
gem "listen", "~> 3.2"
36+
gem "puma", "~> 6.0"
37+
gem "rails", "~> 7.2.0"
38+
gem "spring", "!= 2.1.1"
39+
gem "spring-watcher-listen", "~> 2.0.0"
40+
gem "sqlite3", "~> 1.4"
41+
end

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
factory_bot_rails (6.4.4)
4+
factory_bot_rails (6.5.0)
55
factory_bot (~> 6.5)
66
railties (>= 5.0.0)
77

NEWS.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ there might not be any notable changes in new versions of this project.
66
* Add: First-party support for [`file_fixture`](https://api.rubyonrails.org/classes/ActiveSupport/Testing/FileFixtures.html#method-i-file_fixture) within factory blocks
77

88
## 6.4.4 (October 25, 2024)
9-
109
* Changed: Bump Factory Bot 6.5.0
1110

1211
## 6.4.3 (December 29, 2023)

gemfiles/rails7.2.gemfile

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "appraisal"
6+
gem "aruba"
7+
gem "cucumber"
8+
gem "rake"
9+
gem "rspec-rails"
10+
gem "standard"
11+
gem "byebug"
12+
gem "listen", "~> 3.2"
13+
gem "puma", "~> 6.0"
14+
gem "rails", "~> 7.2.0"
15+
gem "spring", "!= 2.1.1"
16+
gem "spring-watcher-listen", "~> 2.0.0"
17+
gem "sqlite3", "~> 1.4"
18+
19+
gemspec name: "factory_bot_rails", path: "../"

0 commit comments

Comments
 (0)