From 7e7946e1ed36a7cfde7d8af3b1945eafc7dbc955 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 12 Jun 2024 00:14:01 +0000 Subject: [PATCH] Update dependency standard to v1.37.0 (#1600) * Update dependency standard to v1.37.0 * standard fixes --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Daniel Frett --- Gemfile.lock | 6 +++--- app/errors/user_already_exist.rb | 2 +- app/errors/user_not_found.rb | 2 +- lib/log/logger/formatter_readable.rb | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index b3721d233..b12866694 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -442,7 +442,7 @@ GEM activesupport (>= 3.0.0) mustache (~> 1.0, >= 0.99.4) rspec (~> 3.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -500,10 +500,10 @@ GEM spring (4.2.1) spring-commands-rspec (1.0.4) spring (>= 0.9.1) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/app/errors/user_already_exist.rb b/app/errors/user_already_exist.rb index 35608b314..750152e60 100644 --- a/app/errors/user_already_exist.rb +++ b/app/errors/user_already_exist.rb @@ -3,7 +3,7 @@ module UserAlreadyExist class Error < StandardError def initialize(message = "User account already exists.") - super(message) + super end end end diff --git a/app/errors/user_not_found.rb b/app/errors/user_not_found.rb index c7679f50e..b2026627d 100644 --- a/app/errors/user_not_found.rb +++ b/app/errors/user_not_found.rb @@ -3,7 +3,7 @@ module UserNotFound class Error < StandardError def initialize(message = "User account not found.") - super(message) + super end end end diff --git a/lib/log/logger/formatter_readable.rb b/lib/log/logger/formatter_readable.rb index bf844a028..43c0b175d 100644 --- a/lib/log/logger/formatter_readable.rb +++ b/lib/log/logger/formatter_readable.rb @@ -9,7 +9,7 @@ def initialize(*args) def _call(severity, time, progname, data) data.delete(:request) - super(severity, time, progname, data) + super end end end