Skip to content

Commit

Permalink
Update dependency standard to v1.37.0 (#1600)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
renovate[bot] and frett authored Jun 12, 2024
1 parent a3a829c commit 7e7946e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion app/errors/user_already_exist.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module UserAlreadyExist
class Error < StandardError
def initialize(message = "User account already exists.")
super(message)
super
end
end
end
2 changes: 1 addition & 1 deletion app/errors/user_not_found.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module UserNotFound
class Error < StandardError
def initialize(message = "User account not found.")
super(message)
super
end
end
end
2 changes: 1 addition & 1 deletion lib/log/logger/formatter_readable.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7e7946e

Please sign in to comment.