From 63c543ac597b6f7884d1e47e58689f6bd5e344f7 Mon Sep 17 00:00:00 2001 From: Nitesh Purohit Date: Wed, 11 Mar 2026 21:16:37 -0400 Subject: [PATCH 1/3] chore: dependencies --- Gemfile.lock | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index f1df49f..c12e5b2 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -13,6 +13,8 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.9) + public_suffix (>= 2.0.2, < 8.0) ast (2.4.3) benchmark (0.5.0) benchmark-malloc (0.2.0) @@ -31,16 +33,22 @@ GEM dry-inflector (1.3.1) io-console (0.8.2) io-console (0.8.2-java) - json (2.18.1) - json (2.18.1-java) + json (2.19.1) + json (2.19.1-java) + json-schema (6.2.0) + addressable (~> 2.8) + bigdecimal (>= 3.1, < 5) language_server-protocol (3.17.0.5) lint_roller (1.1.0) + mcp (0.8.0) + json-schema (>= 4.1) mize (0.6.1) parallel (1.27.0) - parser (3.3.10.1) + parser (3.3.10.2) ast (~> 2.4.1) racc prism (1.9.0) + public_suffix (7.0.5) racc (1.8.1) racc (1.8.1-java) rainbow (3.1.1) @@ -65,14 +73,15 @@ GEM diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-json_expectations (2.2.0) - rspec-mocks (3.13.7) + rspec-mocks (3.13.8) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-support (3.13.7) - rubocop (1.84.2) + rubocop (1.85.1) json (~> 2.3) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.1.0) + mcp (~> 0.6) parallel (~> 1.10) parser (>= 3.3.0.2) rainbow (>= 2.2.2, < 4.0) @@ -80,7 +89,7 @@ GEM rubocop-ast (>= 1.49.0, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 2.4.0, < 4.0) - rubocop-ast (1.49.0) + rubocop-ast (1.49.1) parser (>= 3.3.7.2) prism (~> 1.7) rubocop-rake (0.7.1) @@ -99,7 +108,7 @@ GEM term-ansicolor (1.11.3) tins (~> 1) thor (1.5.0) - tins (1.51.1) + tins (1.52.0) bigdecimal mize (~> 0.6) readline From a2352ddedf479f7b2aa4a1ca5db44354bd4d9453 Mon Sep 17 00:00:00 2001 From: Nitesh Purohit Date: Sat, 14 Mar 2026 09:02:25 -0400 Subject: [PATCH 2/3] chore: update rubocop configuration - Added exclusion for spec/mock_classes.rb to improve linting accuracy. - Ensured compatibility with new cop settings by enabling NewCops. --- .rubocop.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.rubocop.yml b/.rubocop.yml index 994c398..93ec6ca 100755 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -5,6 +5,8 @@ AllCops: NewCops: enable TargetRubyVersion: 3.2 SuggestExtensions: true + Exclude: + - spec/mock_classes.rb Metrics/MethodLength: Max: 20 RSpec/MultipleExpectations: From 661e64c586cc3b106b96c4d9fa42ddab2e0a862e Mon Sep 17 00:00:00 2001 From: Nitesh Purohit Date: Sat, 14 Mar 2026 09:07:14 -0400 Subject: [PATCH 3/3] chore: update rubocop exclusions - Added 'vendor/**/*' and 'vendor/bundle/**/*' to Exclude list. - This change prevents RuboCop from checking files in vendor directories, improving linting performance and reducing false positives. --- .rubocop.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.rubocop.yml b/.rubocop.yml index 93ec6ca..c54d276 100755 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -6,6 +6,8 @@ AllCops: TargetRubyVersion: 3.2 SuggestExtensions: true Exclude: + - 'vendor/**/*' + - 'vendor/bundle/**/*' - spec/mock_classes.rb Metrics/MethodLength: Max: 20