-
-
Notifications
You must be signed in to change notification settings - Fork 30
Dual Boot RailsBump.org with Rails 8.0 and Rails 8.1 and run 2 test suite jobs #150
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
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 | ||||
|---|---|---|---|---|---|---|
| @@ -1,7 +1,12 @@ | ||||||
| def next? | ||||||
| File.basename(__FILE__) == "Gemfile.next" | ||||||
| end | ||||||
| source "https://rubygems.org" | ||||||
|
|
||||||
| ruby file: ".ruby-version" | ||||||
|
|
||||||
| gem "next_rails" | ||||||
|
|
||||||
| # gem "activerecord-enhancedsqlite3-adapter", "~> 0.5" | ||||||
| gem "amazing_print", "~> 1.5" | ||||||
| gem "aws-sdk-s3", "~> 1.8", require: false | ||||||
|
|
@@ -27,8 +32,13 @@ gem "propshaft", "~> 0.8" | |||||
| gem "pry-rails", "~> 0.3" | ||||||
| gem "puma", "~> 6.4" | ||||||
| gem "rails_bootstrap_navbar", "~> 3.0" | ||||||
| gem "rails", "~> 8.0.0" | ||||||
| gem "rails-i18n", "~> 8.0.0" | ||||||
| if next? | ||||||
| gem "rails", "~> 8.1.0" | ||||||
| gem "rails-i18n", "~> 8.x" | ||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've never seeing adding X in the version, is this a typo?
Suggested change
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @JuanVqz When I reviewed these changes I was a little surprised by that too! Apparently it is a thing to use x as a wildcard:
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. TIL |
||||||
| else | ||||||
| gem "rails", "~> 8.0.0" | ||||||
| gem "rails-i18n", "~> 8.0.0" | ||||||
| end | ||||||
| gem "redis-namespace", "~> 1.11" | ||||||
| gem "redis", "~> 5.0" | ||||||
| gem "sentry-rails", "~> 5.5" | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| Gemfile |

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 version constraint
"~> 8.x"forrails-i18nis non-standard/ambiguous and can lead to surprising resolution behavior. Prefer an explicit semver range (e.g.,"~> 8.0"for any 8.x, or">= 8.0", "< 9") to clearly communicate intent and keep Bundler resolution predictable.