Skip to content

Commit

Permalink
Update rubocop requirement from 1.57.2 to 1.58.0 (#1644)
Browse files Browse the repository at this point in the history
* Update rubocop requirement from 1.57.2 to 1.58.0

Updates the requirements on [rubocop](https://github.com/rubocop/rubocop) to permit the latest version.
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.57.2...v1.58.0)

---
updated-dependencies:
- dependency-name: rubocop
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>

* Run bundle exec rubocop -a

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Keegan Campbell <me@kfcampbell.com>
  • Loading branch information
dependabot[bot] and kfcampbell authored Dec 6, 2023
1 parent 125b58a commit dcbfa14
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ group :test, :development do
gem 'bundler', '>= 1', '< 3'
gem 'pry-byebug'
gem 'redcarpet'
gem 'rubocop', '1.57.2'
gem 'rubocop', '1.58.0'
end

gemspec
2 changes: 1 addition & 1 deletion lib/octokit/middleware/follow_redirects.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class RedirectLimitReached < Faraday::ClientError
attr_reader :response

def initialize(response)
super "too many redirects; last one to: #{response['location']}"
super("too many redirects; last one to: #{response['location']}")
@response = response
end
end
Expand Down

0 comments on commit dcbfa14

Please sign in to comment.