From e67becd23a2049c130f2b32525e7330d26474c19 Mon Sep 17 00:00:00 2001 From: Jeremy Cole Date: Fri, 1 Nov 2024 15:55:24 -0700 Subject: [PATCH] Update dependencies --- .rubocop.yml | 4 ++++ Gemfile.lock | 29 ++++++++++++++++------------- avruby.gemspec | 2 +- 3 files changed, 21 insertions(+), 14 deletions(-) diff --git a/.rubocop.yml b/.rubocop.yml index 27e8f6e..c605a53 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -15,6 +15,10 @@ Layout/HashAlignment: Style/ClassMethodsDefinitions: Enabled: false +# Not sure if this improves readability or not... +Style/BitwisePredicate: + Enabled: false + RSpec/SpecFilePathFormat: Enabled: false diff --git a/Gemfile.lock b/Gemfile.lock index 4bb403c..bbc60b9 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,7 +2,7 @@ PATH remote: . specs: avruby (0.5.1) - intel_hex (~> 0.5.3) + intel_hex (~> 0.6.0) sorbet-runtime (~> 0.5.3) GEM @@ -11,11 +11,11 @@ GEM ast (2.4.2) byebug (11.1.3) diff-lcs (1.5.1) - intel_hex (0.5.5) - json (2.7.2) + intel_hex (0.6.0) + json (2.7.5) language_server-protocol (3.17.0.3) parallel (1.26.3) - parser (3.3.5.0) + parser (3.3.5.1) ast (~> 2.4.1) racc racc (1.8.1) @@ -25,16 +25,16 @@ GEM rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) rspec-mocks (~> 3.13.0) - rspec-core (3.13.1) + rspec-core (3.13.2) rspec-support (~> 3.13.0) rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) - rspec-mocks (3.13.1) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-support (3.13.1) - rubocop (1.66.1) + rubocop (1.68.0) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -44,20 +44,23 @@ GEM rubocop-ast (>= 1.32.2, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) + rubocop-ast (1.33.0) parser (>= 3.3.1.0) - rubocop-rspec (3.0.5) + rubocop-rspec (3.2.0) rubocop (~> 1.61) rubocop-shopify (2.9.0) rubocop (~> 1.33) ruby-progressbar (1.13.0) - sorbet (0.5.11577) - sorbet-static (= 0.5.11577) - sorbet-runtime (0.5.11577) - sorbet-static (0.5.11577-x86_64-linux) + sorbet (0.5.11631) + sorbet-static (= 0.5.11631) + sorbet-runtime (0.5.11631) + sorbet-static (0.5.11631-universal-darwin) + sorbet-static (0.5.11631-x86_64-linux) unicode-display_width (2.6.0) PLATFORMS + x86_64-darwin-19 + x86_64-darwin-24 x86_64-linux DEPENDENCIES diff --git a/avruby.gemspec b/avruby.gemspec index 0054ba9..baefda3 100644 --- a/avruby.gemspec +++ b/avruby.gemspec @@ -24,7 +24,7 @@ Gem::Specification.new do |s| s.add_development_dependency("rubocop-shopify", "~> 2.9.0") s.add_development_dependency("sorbet") - s.add_dependency("intel_hex", "~> 0.5.3") + s.add_dependency("intel_hex", "~> 0.6.0") s.add_dependency("sorbet-runtime", "~> 0.5.3") s.metadata["rubygems_mfa_required"] = "true" end