-
Notifications
You must be signed in to change notification settings - Fork 760
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1339 from reactjs/judahmeek/ci-fixes
Refactoring & CI fixes
- Loading branch information
Showing
31 changed files
with
509 additions
and
408 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,28 +1,17 @@ | ||
appraise 'sprockets_4' do | ||
gem 'rails', '~> 7.0.x' | ||
gem 'sprockets', '~> 4.0.x' | ||
gem 'sprockets-rails' | ||
gem 'turbolinks', '~> 5' | ||
gem 'mini_racer', :platforms => :mri | ||
end | ||
|
||
appraise 'sprockets_3' do | ||
gem 'rails', '~> 7.0.x' | ||
gem 'sprockets', '~> 3.5' | ||
gem 'sprockets-rails' | ||
gem 'turbolinks', '~> 5' | ||
gem 'mini_racer', :platforms => :mri | ||
end | ||
|
||
appraise 'shakapacker' do | ||
gem 'rails', '~> 7.0.x' | ||
gem 'shakapacker', '7.2.0' | ||
end | ||
|
||
appraise 'base' do | ||
# Appraisal adds `turbolinks` to this gemfile because it is | ||
# present in `./Gemfile`. | ||
# But it causes this gemfile to break, so it must be removed | ||
# from `./gemfiles/rails_5_no_sprockets.gemfile` manually. | ||
gem 'rails', '~> 7.0.x' | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# frozen_string_literal: true | ||
|
||
source "http://rubygems.org" | ||
# To install gems from this Gemfile locally, use BUNDLE_GEMFILE=./LintingGemfile bundle exec rubocop | ||
gem "rubocop" | ||
gem "rubocop-minitest" | ||
gem "rubocop-performance" |
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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
GEM | ||
remote: http://rubygems.org/ | ||
specs: | ||
ast (2.4.2) | ||
json (2.7.2) | ||
language_server-protocol (3.17.0.3) | ||
parallel (1.24.0) | ||
parser (3.3.1.0) | ||
ast (~> 2.4.1) | ||
racc | ||
racc (1.7.3) | ||
rainbow (3.1.1) | ||
regexp_parser (2.9.0) | ||
rexml (3.2.6) | ||
rubocop (1.63.5) | ||
json (~> 2.3) | ||
language_server-protocol (>= 3.17.0) | ||
parallel (~> 1.10) | ||
parser (>= 3.3.0.2) | ||
rainbow (>= 2.2.2, < 4.0) | ||
regexp_parser (>= 1.8, < 3.0) | ||
rexml (>= 3.2.5, < 4.0) | ||
rubocop-ast (>= 1.31.1, < 2.0) | ||
ruby-progressbar (~> 1.7) | ||
unicode-display_width (>= 2.4.0, < 3.0) | ||
rubocop-ast (1.31.3) | ||
parser (>= 3.3.1.0) | ||
rubocop-minitest (0.35.0) | ||
rubocop (>= 1.61, < 2.0) | ||
rubocop-ast (>= 1.31.1, < 2.0) | ||
rubocop-performance (1.21.0) | ||
rubocop (>= 1.48.1, < 2.0) | ||
rubocop-ast (>= 1.31.1, < 2.0) | ||
ruby-progressbar (1.13.0) | ||
unicode-display_width (2.5.0) | ||
|
||
PLATFORMS | ||
x86_64-darwin-20 | ||
x86_64-linux | ||
|
||
DEPENDENCIES | ||
rubocop | ||
rubocop-minitest | ||
rubocop-performance | ||
|
||
BUNDLED WITH | ||
2.4.9 |
Oops, something went wrong.