Skip to content

Commit 7e7946e

Browse files
renovate[bot]frett
andauthored
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 <[email protected]>
1 parent a3a829c commit 7e7946e

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Gemfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ GEM
442442
activesupport (>= 3.0.0)
443443
mustache (~> 1.0, >= 0.99.4)
444444
rspec (~> 3.0)
445-
rubocop (1.63.5)
445+
rubocop (1.64.1)
446446
json (~> 2.3)
447447
language_server-protocol (>= 3.17.0)
448448
parallel (~> 1.10)
@@ -500,10 +500,10 @@ GEM
500500
spring (4.2.1)
501501
spring-commands-rspec (1.0.4)
502502
spring (>= 0.9.1)
503-
standard (1.36.0)
503+
standard (1.37.0)
504504
language_server-protocol (~> 3.17.0.2)
505505
lint_roller (~> 1.0)
506-
rubocop (~> 1.63.0)
506+
rubocop (~> 1.64.0)
507507
standard-custom (~> 1.0.0)
508508
standard-performance (~> 1.4)
509509
standard-custom (1.0.2)

app/errors/user_already_exist.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module UserAlreadyExist
44
class Error < StandardError
55
def initialize(message = "User account already exists.")
6-
super(message)
6+
super
77
end
88
end
99
end

app/errors/user_not_found.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module UserNotFound
44
class Error < StandardError
55
def initialize(message = "User account not found.")
6-
super(message)
6+
super
77
end
88
end
99
end

lib/log/logger/formatter_readable.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def initialize(*args)
99

1010
def _call(severity, time, progname, data)
1111
data.delete(:request)
12-
super(severity, time, progname, data)
12+
super
1313
end
1414
end
1515
end

0 commit comments

Comments
 (0)