From c5b6f83728c0e0bf1891fa95fd6fd1da455644e8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Feb 2026 21:52:52 +0000 Subject: [PATCH 1/2] Bump the minor-and-patch group with 2 updates Bumps the minor-and-patch group with 2 updates: [rubocop-sorbet](https://github.com/shopify/rubocop-sorbet) and [sorbet-static-and-runtime](https://github.com/sorbet/sorbet). Updates `rubocop-sorbet` from 0.11.0 to 0.12.0 - [Release notes](https://github.com/shopify/rubocop-sorbet/releases) - [Commits](https://github.com/shopify/rubocop-sorbet/compare/v0.11.0...v0.12.0) Updates `sorbet-static-and-runtime` from 0.6.12908 to 0.6.12929 - [Release notes](https://github.com/sorbet/sorbet/releases) - [Commits](https://github.com/sorbet/sorbet/commits) --- updated-dependencies: - dependency-name: rubocop-sorbet dependency-version: 0.12.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: sorbet-static-and-runtime dependency-version: 0.6.12929 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 21002efb..2dbd1aa6 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -28,7 +28,7 @@ GEM pp (>= 0.6.0) rdoc (>= 4.0.0) reline (>= 0.4.2) - json (2.15.2) + json (2.18.1) language_server-protocol (3.17.0.5) lint_roller (1.1.0) logger (1.7.0) @@ -42,7 +42,7 @@ GEM ruby-progressbar netrc (0.11.0) parallel (1.27.0) - parser (3.3.10.0) + parser (3.3.10.1) ast (~> 2.4.1) racc pp (0.6.3) @@ -71,7 +71,7 @@ GEM io-console (~> 0.5) require-hooks (0.2.2) rexml (3.4.4) - rubocop (1.81.7) + rubocop (1.84.2) json (~> 2.3) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.1.0) @@ -79,26 +79,26 @@ GEM parser (>= 3.3.0.2) rainbow (>= 2.2.2, < 4.0) regexp_parser (>= 2.9.3, < 3.0) - rubocop-ast (>= 1.47.1, < 2.0) + rubocop-ast (>= 1.49.0, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 2.4.0, < 4.0) - rubocop-ast (1.47.1) + rubocop-ast (1.49.0) parser (>= 3.3.7.2) - prism (~> 1.4) + prism (~> 1.7) rubocop-shopify (2.18.0) rubocop (~> 1.62) - rubocop-sorbet (0.11.0) + rubocop-sorbet (0.12.0) lint_roller rubocop (>= 1.75.2) ruby-progressbar (1.13.0) - sorbet (0.6.12908) - sorbet-static (= 0.6.12908) - sorbet-runtime (0.6.12908) - sorbet-static (0.6.12908-universal-darwin) - sorbet-static (0.6.12908-x86_64-linux) - sorbet-static-and-runtime (0.6.12908) - sorbet (= 0.6.12908) - sorbet-runtime (= 0.6.12908) + sorbet (0.6.12942) + sorbet-static (= 0.6.12942) + sorbet-runtime (0.6.12942) + sorbet-static (0.6.12942-universal-darwin) + sorbet-static (0.6.12942-x86_64-linux) + sorbet-static-and-runtime (0.6.12942) + sorbet (= 0.6.12942) + sorbet-runtime (= 0.6.12942) stringio (3.2.0) tapioca (0.17.10) benchmark From d6075afd6c0557a557ac28c86e7f8c6501b0c1f0 Mon Sep 17 00:00:00 2001 From: Vinicius Stock Date: Wed, 18 Feb 2026 10:45:10 -0500 Subject: [PATCH 2/2] Fix indentation violation --- lib/spoom/cli/srb/metrics.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/spoom/cli/srb/metrics.rb b/lib/spoom/cli/srb/metrics.rb index 6e79cbf3..044bede2 100644 --- a/lib/spoom/cli/srb/metrics.rb +++ b/lib/spoom/cli/srb/metrics.rb @@ -59,7 +59,7 @@ def show(*paths) .select { |key, _value| key.start_with?("rbs_") } .sort_by { |_key, value| -value } .each do |key, value| - say(" * #{key}: `#{value}`") + say(" * #{key}: `#{value}`") end end end