From f4a5fb34498726f37ece0a32f7bcf52a0457bac5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Feb 2026 06:03:44 +0000 Subject: [PATCH 1/2] Bump rubocop-rspec from 3.8.0 to 3.9.0 Bumps [rubocop-rspec](https://github.com/rubocop/rubocop-rspec) from 3.8.0 to 3.9.0. - [Release notes](https://github.com/rubocop/rubocop-rspec/releases) - [Changelog](https://github.com/rubocop/rubocop-rspec/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop/rubocop-rspec/compare/v3.8.0...v3.9.0) --- updated-dependencies: - dependency-name: rubocop-rspec dependency-version: 3.9.0 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index bc8b18ab..f3d871f9 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -83,7 +83,7 @@ GEM pp (>= 0.6.0) rdoc (>= 4.0.0) reline (>= 0.4.2) - json (2.16.0) + json (2.18.1) jwt (3.1.2) base64 language_server-protocol (3.17.0.5) @@ -129,13 +129,13 @@ GEM version_gem (~> 1.1, >= 1.1.9) openssl (3.3.2) parallel (1.27.0) - parser (3.3.10.0) + parser (3.3.10.1) ast (~> 2.4.1) racc pp (0.6.2) prettyprint prettyprint (0.2.0) - prism (1.6.0) + prism (1.9.0) pry (0.14.1) coderay (~> 1.1) method_source (~> 1.0) @@ -181,13 +181,13 @@ GEM rubocop-ast (>= 1.47.1, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 2.4.0, < 4.0) - rubocop-ast (1.48.0) + rubocop-ast (1.49.0) parser (>= 3.3.7.2) - prism (~> 1.4) + prism (~> 1.7) rubocop-factory_bot (2.28.0) lint_roller (~> 1.1) rubocop (~> 1.72, >= 1.72.1) - rubocop-rspec (3.8.0) + rubocop-rspec (3.9.0) lint_roller (~> 1.1) rubocop (~> 1.81) ruby-progressbar (1.13.0) @@ -209,7 +209,7 @@ GEM concurrent-ruby (~> 1.0) unicode-display_width (3.2.0) unicode-emoji (~> 4.1) - unicode-emoji (4.1.0) + unicode-emoji (4.2.0) uri (1.1.1) vcr (6.3.1) base64 From 50450da8b7a0c8a8e438cef56e351546d5f969a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Serge=20H=C3=A4nni?= Date: Tue, 10 Feb 2026 11:24:16 +0100 Subject: [PATCH 2/2] Change to ignore cop We probably could write a custom matcher for better output. --- spec/ioki/open_api_spec.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/spec/ioki/open_api_spec.rb b/spec/ioki/open_api_spec.rb index 22f97992..1e7d17dd 100644 --- a/spec/ioki/open_api_spec.rb +++ b/spec/ioki/open_api_spec.rb @@ -130,10 +130,12 @@ class Example < Base allow(File).to receive(:write) do |path, ruby_code| expect(path).to eq(model_file_path) if ruby_code != expected_repaired_model_definition + # rubocop:disable RSpec/Output puts "\nExpected code:\n\n" puts expected_repaired_model_definition puts "\nActual code:\n\n" puts ruby_code + # rubocop:enable RSpec/Output end aggregate_failures 'testing generated ruby code' do expect(ruby_code).to include('attribute :new_attribute, type: :string, on: [:create, :read, :update]')