Skip to content

Commit

Permalink
Merge pull request #298 from dblock/upgrade-rubocop
Browse files Browse the repository at this point in the history
Upgraded RuboCop to 1.63.5.
  • Loading branch information
dblock authored May 12, 2024
2 parents 8952514 + 5ab9bf4 commit 85a3234
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .rubocop_todo.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2024-02-01 15:28:54 UTC using RuboCop version 1.48.1.
# on 2024-05-12 16:41:11 UTC using RuboCop version 1.63.5.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
Expand All @@ -20,6 +20,7 @@ Lint/EmptyBlock:
- 'test/hyperclient/entry_point_test.rb'

# Offense count: 4
# Configuration parameters: AllowedParentClasses.
Lint/MissingSuper:
Exclude:
- 'lib/hyperclient/attributes.rb'
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

### 2.0.1 (Next)

* [#298](https://github.com/codegram/hyperclient/pull/298): Upgraded rubocop to 1.63.5 - [@dblock](https://github.com/dblock).
* Your contribution here.

### 2.0.0 (2024/02/01)
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ end

group :development, :test do
gem 'rake'
gem 'rubocop', '~> 1.48.0', require: false
gem 'rubocop', '~> 1.63.5', require: false
gem 'rubocop-minitest', require: false
gem 'rubocop-rake', require: false
gem 'simplecov', require: false
Expand Down
2 changes: 1 addition & 1 deletion examples/splines_api.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

# enumerate splines
api.splines.each do |spline|
puts spline.uuid.to_s
puts spline.uuid
puts " reticulated: #{spline.reticulated ? 'yes' : 'no'}"
puts " thumbnail: #{spline['images:thumbnail']}"
end
Expand Down

0 comments on commit 85a3234

Please sign in to comment.