-
-
Notifications
You must be signed in to change notification settings - Fork 375
Support Rails 8.1 #549
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support Rails 8.1 #549
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,18 @@ | ||||||||||||||||||
| # This file was generated by Appraisal | ||||||||||||||||||
|
|
||||||||||||||||||
| source "https://rubygems.org" | ||||||||||||||||||
|
|
||||||||||||||||||
| gem "bcrypt" | ||||||||||||||||||
| gem "brakeman" | ||||||||||||||||||
| gem "bundler-audit" | ||||||||||||||||||
| gem "kamal" | ||||||||||||||||||
| gem "minitest", "~> 5.27" | ||||||||||||||||||
| gem "puma" | ||||||||||||||||||
| gem "rails", "~> 8.1.0" | ||||||||||||||||||
| gem "rubocop-rails-omakase" | ||||||||||||||||||
| gem "solid_cache" | ||||||||||||||||||
| gem "solid_queue" | ||||||||||||||||||
| gem "sqlite3", ">= 2.1" | ||||||||||||||||||
| gem "thruster" | ||||||||||||||||||
|
|
||||||||||||||||||
|
||||||||||||||||||
| gem "appraisal" | |
| gem "aruba" | |
| gem "cucumber" | |
| gem "rake" | |
| gem "rspec-rails" | |
| gem "standard" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The rails8.1 block is missing several dependencies that are consistently present in rails8.0 and all Rails 7.x version blocks. The following gems should be added for consistency:
byebug(for debugging support)listen ~> 3.2(for file watching)spring != 2.1.1(application preloader)spring-watcher-listen ~> 2.0.0(Spring file watcher integration)Additionally,
pumashould have a version constraint (~> 6.0) to match the pattern used in rails7.1, rails7.2, and rails8.0.The presence of
bcrypt,bundler-audit, andsolid_cacheappears inconsistent with the rails8.0 block and may not be necessary in the Appraisals file if they are transitive dependencies.