From 15441718a3a912cee76fee14c69add97c6f1f4be Mon Sep 17 00:00:00 2001 From: Andy Waite Date: Fri, 5 Apr 2024 15:39:55 -0400 Subject: [PATCH 1/2] Use Prism HEAD --- .gitignore | 1 - Gemfile | 2 +- Gemfile.lock | 117 +++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 118 insertions(+), 2 deletions(-) create mode 100644 Gemfile.lock diff --git a/.gitignore b/.gitignore index d6176a266c6f..20342fbcdbc1 100644 --- a/.gitignore +++ b/.gitignore @@ -11,7 +11,6 @@ doc # bundler .bundle -Gemfile.lock Gemfile.local vendor/ diff --git a/Gemfile b/Gemfile index bd973856870d..8b751b9d6d48 100644 --- a/Gemfile +++ b/Gemfile @@ -8,7 +8,7 @@ gem 'asciidoctor' gem 'bump', require: false gem 'bundler', '>= 1.15.0', '< 3.0' gem 'memory_profiler', platform: :mri -gem 'prism', '>= 0.24.0' +gem 'prism', github: 'ruby/prism', branch: 'main' gem 'rake', '~> 13.0' gem 'rspec', '~> 3.7' gem 'rubocop-performance', '~> 1.21.0' diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 000000000000..9cd1d0b2a982 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,117 @@ +GIT + remote: https://github.com/ruby/prism.git + revision: 19c67fba37eb40249c89539d8c6eb165480c8ab9 + branch: main + specs: + prism (0.24.0) + +PATH + remote: . + specs: + rubocop (1.62.1) + 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) + +GEM + remote: https://rubygems.org/ + specs: + addressable (2.8.5) + public_suffix (>= 2.0.2, < 6.0) + asciidoctor (2.0.20) + ast (2.4.2) + bump (0.10.0) + crack (0.4.5) + rexml + diff-lcs (1.5.0) + docile (1.4.0) + hashdiff (1.0.1) + json (2.6.3) + language_server-protocol (3.17.0.3) + memory_profiler (1.0.1) + parallel (1.23.0) + parser (3.3.0.5) + ast (~> 2.4.1) + racc + public_suffix (5.0.3) + racc (1.7.1) + rainbow (3.1.1) + rake (13.0.6) + regexp_parser (2.8.2) + rexml (3.2.6) + rspec (3.12.0) + rspec-core (~> 3.12.0) + rspec-expectations (~> 3.12.0) + rspec-mocks (~> 3.12.0) + rspec-core (3.12.2) + rspec-support (~> 3.12.0) + rspec-expectations (3.12.3) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.12.0) + rspec-mocks (3.12.6) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.12.0) + rspec-support (3.12.1) + rubocop-ast (1.31.2) + parser (>= 3.3.0.4) + rubocop-capybara (2.20.0) + rubocop (~> 1.41) + rubocop-factory_bot (2.25.1) + rubocop (~> 1.41) + rubocop-performance (1.21.0) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.31.1, < 2.0) + rubocop-rake (0.6.0) + rubocop (~> 1.0) + rubocop-rspec (2.29.1) + rubocop (~> 1.40) + rubocop-capybara (~> 2.17) + rubocop-factory_bot (~> 2.22) + rubocop-rspec_rails (~> 2.28) + rubocop-rspec_rails (2.28.2) + rubocop (~> 1.40) + ruby-progressbar (1.13.0) + simplecov (0.17.1) + docile (~> 1.1) + json (>= 1.8, < 3) + simplecov-html (~> 0.10.0) + simplecov-html (0.10.2) + stackprof (0.2.25) + test-queue (0.11.0) + unicode-display_width (2.5.0) + webmock (3.19.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) + yard (0.9.34) + +PLATFORMS + arm64-darwin-21 + +DEPENDENCIES + asciidoctor + bump + bundler (>= 1.15.0, < 3.0) + memory_profiler + prism! + rake (~> 13.0) + rspec (~> 3.7) + rubocop! + rubocop-performance (~> 1.21.0) + rubocop-rake (~> 0.6.0) + rubocop-rspec (~> 2.29.1) + simplecov (~> 0.10, < 0.18) + stackprof + test-queue + webmock + yard (~> 0.9) + +BUNDLED WITH + 2.4.20 From 4e90ce0b0c8d57dca4f54989841f0d1c6923e618 Mon Sep 17 00:00:00 2001 From: Andy Waite Date: Fri, 5 Apr 2024 16:07:38 -0400 Subject: [PATCH 2/2] $ bundle lock --add-platform x86_64-linux --- Gemfile.lock | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemfile.lock b/Gemfile.lock index 9cd1d0b2a982..7481e5d5ad64 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -94,6 +94,7 @@ GEM PLATFORMS arm64-darwin-21 + x86_64-linux DEPENDENCIES asciidoctor