From 01171a79e7762bfbb75fd5e136ed1bce2fffd342 Mon Sep 17 00:00:00 2001 From: Matt Jankowski Date: Tue, 5 Nov 2024 08:02:33 -0500 Subject: [PATCH 1/3] chore: use latest stable ruby for local development (#509) --- .ruby-version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ruby-version b/.ruby-version index 94ff29cc..fa7adc7a 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -3.1.1 +3.3.5 From e4fa0ded50668fee86db4d76a02afa0faaad4a3b Mon Sep 17 00:00:00 2001 From: Matt Jankowski Date: Tue, 5 Nov 2024 08:03:00 -0500 Subject: [PATCH 2/3] chore: drop EOL rails version from CI config (#510) --- .github/workflows/ruby.yml | 1 - gemfiles/Gemfile-rails.6.1.x | 7 ------- 2 files changed, 8 deletions(-) delete mode 100644 gemfiles/Gemfile-rails.6.1.x diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index c3204aac..02c5cb78 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -17,7 +17,6 @@ jobs: "3.3", ] gemfile: [ - "Gemfile-rails.6.1.x", "Gemfile-rails.7.0.x", "Gemfile-rails.7.1.x", "Gemfile-rails.7.2.x", diff --git a/gemfiles/Gemfile-rails.6.1.x b/gemfiles/Gemfile-rails.6.1.x deleted file mode 100644 index 85f3496b..00000000 --- a/gemfiles/Gemfile-rails.6.1.x +++ /dev/null @@ -1,7 +0,0 @@ -source 'https://rubygems.org' - -gem 'rails', '~> 6.1.0' - -gemspec path: '../vite_ruby' -gemspec path: '../vite_rails' -gemspec path: '../vite_plugin_legacy' From 9a9630043c6e318c901ca901f72c3afd55deb933 Mon Sep 17 00:00:00 2001 From: Matt Jankowski Date: Tue, 5 Nov 2024 08:06:30 -0500 Subject: [PATCH 3/3] chore: update rubocop to version 1.28.2 (#511) * Update rubocop to version 1.28.2 * chore: drop requirement limit, this is not a gemspec --------- Co-authored-by: Maximo Mussini --- .rubocop_todo.yml | 10 +++++----- Gemfile.lock | 24 ++++++++++++------------ 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index d133062f..4edd7cfd 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -1,14 +1,14 @@ # This configuration was generated by # `rubocop --auto-gen-config` -# on 2021-08-16 18:41:25 UTC using RuboCop version 1.13.0. +# on 2024-10-30 16:53:53 UTC using RuboCop version 1.28.2. # 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: 40 -# Cop supports --auto-correct. -# Configuration parameters: AutoCorrect, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns. +# 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: 250 + Max: 222 diff --git a/Gemfile.lock b/Gemfile.lock index 864db1d1..72773a48 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -158,8 +158,8 @@ GEM nokogiri (1.16.7) mini_portile2 (~> 2.8.2) racc (~> 1.4) - parallel (1.23.0) - parser (3.2.2.4) + parallel (1.26.3) + parser (3.3.5.0) ast (~> 2.4.1) racc pry (0.14.2) @@ -214,24 +214,24 @@ GEM rake (13.2.1) rdoc (6.7.0) psych (>= 4.0.0) - regexp_parser (2.8.1) + regexp_parser (2.9.2) reline (0.5.10) io-console (~> 0.5) - rexml (3.2.6) - rubocop (1.24.1) + rexml (3.3.9) + rubocop (1.28.2) parallel (~> 1.10) - parser (>= 3.0.0.0) + parser (>= 3.1.0.0) rainbow (>= 2.2.2, < 4.0) regexp_parser (>= 1.8, < 3.0) rexml - rubocop-ast (>= 1.15.1, < 2.0) + rubocop-ast (>= 1.17.0, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 1.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-minitest (0.27.0) + rubocop-ast (1.33.0) + parser (>= 3.3.1.0) + rubocop-minitest (0.19.1) rubocop (>= 0.90, < 2.0) - rubocop-performance (1.19.1) + rubocop-performance (1.13.3) rubocop (>= 1.7.0, < 2.0) rubocop-ast (>= 0.4.0) ruby-progressbar (1.13.0) @@ -246,7 +246,7 @@ GEM timeout (0.4.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) + unicode-display_width (2.6.0) webrick (1.8.1) websocket-driver (0.7.6) websocket-extensions (>= 0.1.0)