-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: test rails 8.0 explicitly * chore: add mutex_m as a dependency * chore: autocorrect hash spacing * chore: autocorrect string literals
- Loading branch information
Showing
105 changed files
with
1,234 additions
and
1,111 deletions.
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
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,14 +1,19 @@ | ||
# This configuration was generated by | ||
# `rubocop --auto-gen-config` | ||
# on 2024-10-30 16:53:53 UTC using RuboCop version 1.28.2. | ||
# on 2024-11-05 13:37:33 UTC using RuboCop version 1.66.1. | ||
# The point is for the user to remove these configuration records | ||
# one by one as the offenses are removed from the code base. | ||
# Note that changes in the inspected code, or installation of new | ||
# versions of RuboCop, may require this file to be generated again. | ||
|
||
# Offense count: 46 | ||
# This cop supports safe auto-correction (--auto-correct). | ||
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, AllowedPatterns, IgnoredPatterns. | ||
# URISchemes: http, https | ||
Layout/LineLength: | ||
Max: 222 | ||
# Offense count: 1 | ||
# Configuration parameters: AllowComments, AllowEmptyLambdas. | ||
Lint/EmptyBlock: | ||
Exclude: | ||
- 'test/mounted_app/test/dummy/config/initializers/content_security_policy.rb' | ||
|
||
# Offense count: 1 | ||
# Configuration parameters: AllowComments. | ||
Lint/EmptyClass: | ||
Exclude: | ||
- 'test/test_app/config/application.rb' |
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,16 +1,17 @@ | ||
# frozen_string_literal: true | ||
|
||
source 'https://rubygems.org' | ||
source "https://rubygems.org" | ||
|
||
gem 'rails' | ||
gem "rails" | ||
|
||
gemspec path: './vite_ruby' | ||
gemspec path: './vite_rails' | ||
gemspec path: './vite_plugin_legacy' | ||
gemspec path: "./vite_ruby" | ||
gemspec path: "./vite_rails" | ||
gemspec path: "./vite_plugin_legacy" | ||
|
||
group :development, :test do | ||
gem 'benchmark-ips' | ||
gem 'rubocop', '~> 1.9' | ||
gem 'rubocop-minitest', '~> 0.10' | ||
gem 'rubocop-performance', '~> 1.9' | ||
gem "benchmark-ips" | ||
gem "rubocop" | ||
gem "rubocop-minitest" | ||
gem "rubocop-performance" | ||
gem "standard", require: false | ||
end |
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
Oops, something went wrong.