From 6ebe2e6972734541e838c4bbd808be80a43c67b5 Mon Sep 17 00:00:00 2001 From: "depfu[bot]" <23717796+depfu[bot]@users.noreply.github.com> Date: Sat, 22 Jul 2023 13:26:57 -0700 Subject: [PATCH] Update all Bundler dependencies (2023-07-19) (#38) Co-authored-by: depfu[bot] <23717796+depfu[bot]@users.noreply.github.com> --- .rubocop.yml | 2 +- Gemfile.lock | 60 ++++++++++++++++++++++++++++--------------------- bin/console | 2 +- lib/baes/git.rb | 2 +- 4 files changed, 38 insertions(+), 28 deletions(-) diff --git a/.rubocop.yml b/.rubocop.yml index 0ba56a3..defd872 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -16,7 +16,7 @@ Metrics/BlockLength: { Exclude: ["spec/**/*_spec.rb"] } Style/ClassAndModuleChildren: { EnforcedStyle: compact } Style/MethodCallWithArgsParentheses: - IgnoredMethods: + AllowedMethods: - abort - describe - not_to diff --git a/Gemfile.lock b/Gemfile.lock index 8210511..2091c9f 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -9,51 +9,61 @@ GEM ast (2.4.2) diff-lcs (1.5.0) docile (1.4.0) - json (2.6.2) - parallel (1.22.1) - parser (3.1.2.1) + json (2.6.3) + language_server-protocol (3.17.0.3) + parallel (1.23.0) + parser (3.2.2.3) ast (~> 2.4.1) + racc + racc (1.7.1) rainbow (3.1.1) rake (13.0.6) - regexp_parser (2.6.0) + regexp_parser (2.8.1) rexml (3.2.5) - rspec (3.11.0) - rspec-core (~> 3.11.0) - rspec-expectations (~> 3.11.0) - rspec-mocks (~> 3.11.0) - rspec-core (3.11.0) - rspec-support (~> 3.11.0) - rspec-expectations (3.11.1) + rspec (3.12.0) + rspec-core (~> 3.12.0) + rspec-expectations (~> 3.12.0) + rspec-mocks (~> 3.12.0) + rspec-core (3.12.2) + rspec-support (~> 3.12.0) + rspec-expectations (3.12.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.11.0) - rspec-mocks (3.11.1) + rspec-support (~> 3.12.0) + rspec-mocks (3.12.6) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.11.0) - rspec-support (3.11.1) - rubocop (1.36.0) + rspec-support (~> 3.12.0) + rspec-support (3.12.1) + rubocop (1.54.2) json (~> 2.3) + language_server-protocol (>= 3.17.0) parallel (~> 1.10) - parser (>= 3.1.2.1) + parser (>= 3.2.2.3) rainbow (>= 2.2.2, < 4.0) regexp_parser (>= 1.8, < 3.0) rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.20.1, < 2.0) + rubocop-ast (>= 1.28.0, < 2.0) ruby-progressbar (~> 1.7) - unicode-display_width (>= 1.4.0, < 3.0) - rubocop-ast (1.21.0) - parser (>= 3.1.1.0) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.29.0) + parser (>= 3.2.1.0) + rubocop-capybara (2.18.0) + rubocop (~> 1.41) + rubocop-factory_bot (2.23.1) + rubocop (~> 1.33) rubocop-rake (0.6.0) rubocop (~> 1.0) - rubocop-rspec (2.13.2) + rubocop-rspec (2.22.0) rubocop (~> 1.33) - ruby-progressbar (1.11.0) - simplecov (0.21.2) + rubocop-capybara (~> 2.17) + rubocop-factory_bot (~> 2.22) + ruby-progressbar (1.13.0) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - unicode-display_width (2.3.0) + unicode-display_width (2.4.2) PLATFORMS x86_64-linux diff --git a/bin/console b/bin/console index a30c36c..048262a 100755 --- a/bin/console +++ b/bin/console @@ -1,8 +1,8 @@ #!/usr/bin/env ruby # frozen_string_literal: true -require "bundler/setup" require "baes" +require "bundler/setup" # You can add fixtures and/or initialization code here to make experimenting # with your gem easier. You can also use a different console, if you like. diff --git a/lib/baes/git.rb b/lib/baes/git.rb index 3f03d5b..6b17a80 100644 --- a/lib/baes/git.rb +++ b/lib/baes/git.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true -require "open3" require "English" +require "open3" # module to encapsulate git commands in the shell module Baes::Git