From cbe81692af10cade6e31433379ec64b7f9a96c07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Cedr=C3=B3n?= Date: Tue, 3 Sep 2024 19:00:22 -0300 Subject: [PATCH] CRD-567: Add ostruct dependency --- Gemfile.lock | 34 ++++++++++++++++++---------------- lib/rubocop/changes/checker.rb | 1 + lib/rubocop/changes/version.rb | 2 +- rubocop-changes.gemspec | 3 ++- 4 files changed, 22 insertions(+), 18 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 5fdce33..778eda4 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - rubocop-changes (0.8.0) + rubocop-changes (0.8.2) git_diff_parser (~> 3.2) rubocop (>= 1.0) @@ -12,14 +12,16 @@ GEM byebug (10.0.2) diff-lcs (1.3) git_diff_parser (3.2.0) - json (2.6.3) - parallel (1.22.1) - parser (3.2.0.0) + json (2.7.2) + language_server-protocol (3.17.0.3) + parallel (1.26.3) + parser (3.3.4.2) ast (~> 2.4.1) + racc + racc (1.8.1) rainbow (3.1.1) rake (13.0.3) - regexp_parser (2.6.2) - rexml (3.2.5) + regexp_parser (2.9.2) rspec (3.9.0) rspec-core (~> 3.9.0) rspec-expectations (~> 3.9.0) @@ -33,20 +35,20 @@ GEM diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.9.0) rspec-support (3.9.0) - rubocop (1.44.0) + rubocop (1.66.0) json (~> 2.3) + language_server-protocol (>= 3.17.0) parallel (~> 1.10) - parser (>= 3.2.0.0) + 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.24.1, < 2.0) + regexp_parser (>= 2.4, < 3.0) + rubocop-ast (>= 1.32.1, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.24.1) - parser (>= 3.1.1.0) - ruby-progressbar (1.11.0) - unicode-display_width (2.4.2) + rubocop-ast (1.32.2) + parser (>= 3.3.1.0) + ruby-progressbar (1.13.0) + unicode-display_width (2.5.0) PLATFORMS ruby @@ -59,4 +61,4 @@ DEPENDENCIES rubocop-changes! BUNDLED WITH - 2.1.4 + 2.3.8 diff --git a/lib/rubocop/changes/checker.rb b/lib/rubocop/changes/checker.rb index cd4a6f3..8a1e389 100644 --- a/lib/rubocop/changes/checker.rb +++ b/lib/rubocop/changes/checker.rb @@ -3,6 +3,7 @@ require 'git_diff_parser' require 'rubocop' require 'json' +require 'ostruct' require 'rubocop/changes/check' require 'rubocop/changes/shell' diff --git a/lib/rubocop/changes/version.rb b/lib/rubocop/changes/version.rb index 2f89915..d9bef1c 100644 --- a/lib/rubocop/changes/version.rb +++ b/lib/rubocop/changes/version.rb @@ -2,6 +2,6 @@ module Rubocop module Changes - VERSION = '0.8.1' + VERSION = '0.8.2' end end diff --git a/rubocop-changes.gemspec b/rubocop-changes.gemspec index e619a27..bca71bd 100644 --- a/rubocop-changes.gemspec +++ b/rubocop-changes.gemspec @@ -22,7 +22,8 @@ Gem::Specification.new do |spec| spec.metadata = { 'source_code_uri' => 'https://github.com/fcsonline/rubocop-changes', - 'bug_tracker_uri' => 'https://github.com/fcsonline/rubocop-changes/issues' + 'bug_tracker_uri' => 'https://github.com/fcsonline/rubocop-changes/issues', + 'github_repo' => 'ssh://github.com/conekta/rubocop-changes' } # Specify which files should be added to the gem when it is released.