Skip to content

Commit

Permalink
Merge pull request #47 from ryantaylor/dependabot/bundler/rubocop-1.58.0
Browse files Browse the repository at this point in the history
Bump rubocop from 1.57.2 to 1.58.0
  • Loading branch information
ryantaylor authored Dec 3, 2023
2 parents 692c647 + 21ba6f4 commit 1629ac4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ gem 'rake', '~> 13.1'

gem 'rspec', '~> 3.0'

gem 'rubocop', '~> 1.57'
gem 'rubocop', '~> 1.58'

gem 'vcr', '~> 6.2'
6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@ GEM
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.12.0)
rspec-support (3.12.1)
rubocop (1.57.2)
rubocop (1.58.0)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
parser (>= 3.2.2.4)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.28.1, < 2.0)
rubocop-ast (>= 1.30.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.30.0)
Expand All @@ -71,7 +71,7 @@ DEPENDENCIES
rake (~> 13.1)
relic_link!
rspec (~> 3.0)
rubocop (~> 1.57)
rubocop (~> 1.58)
vcr (~> 6.2)

BUNDLED WITH
Expand Down
2 changes: 1 addition & 1 deletion lib/relic_link/coh3/api/errors/relic_error.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class RelicError < ::Faraday::Error
attr_reader :response

def initialize(message, response = nil)
super message
super(message)
@response = response
end

Expand Down
2 changes: 1 addition & 1 deletion lib/relic_link/errors/server_error.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class ServerError < ::Faraday::Error

def initialize(message, response)
@response = response
super message
super(message)
end
end

Expand Down

0 comments on commit 1629ac4

Please sign in to comment.