-
Notifications
You must be signed in to change notification settings - Fork 28
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
Update for Rails 8 #479
Merged
Merged
Update for Rails 8 #479
Changes from 5 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
9756f9f
$ bundle update rails sqlite3
andyw8 284dc56
Ignore RuboCop for dummy app
andyw8 47369d2
Re-generate dummy app using Rails 8.0.0.beta1
andyw8 ad5f781
Update tests due to line number change
andyw8 af30614
Fixes for Rails 8
andyw8 e605056
Apply RuboCop to Dummy app
andyw8 f298acc
Fix line numbers
andyw8 f5cd208
Remove test/dummy/bin
andyw8 8be1ebe
Remove test/dummy/public
andyw8 ef91dfb
Remove test/dummy/app/views/pwa
andyw8 1ff2925
Restore initializer, remove server.rb changes
andyw8 8fe81ac
Lint
andyw8 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" } | |
gemspec | ||
|
||
gem "puma" | ||
gem "sqlite3", "< 2" | ||
gem "sqlite3" | ||
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. v2 was causing an issue with Rails 7 previously |
||
gem "debug", ">= 1.7.0" | ||
gem "mocha" | ||
gem "rubocop-shopify", "~> 2.15", require: false | ||
|
@@ -17,7 +17,7 @@ gem "rubocop-sorbet", "~> 0.8", require: false | |
gem "sorbet-static-and-runtime", platforms: :ruby | ||
gem "tapioca", "~> 0.13", require: false, platforms: :ruby | ||
gem "psych", "~> 5.1", require: false | ||
gem "rails" | ||
gem "rails", "8.0.0.beta1" | ||
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. We're up to RC2 now, but I will hold off updating until the proper release is out. |
||
gem "webmock" | ||
|
||
platforms :mingw, :x64_mingw, :mswin, :jruby do | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,2 @@ | ||
# frozen_string_literal: true | ||
|
||
andyw8 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
module ApplicationHelper | ||
end |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
We shouldn't care about styling in the dummy app.
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.
Why not?