Skip to content

Commit 5ab9bf4

Browse files
committed
Upgraded RuboCop to 1.63.5.
1 parent 8952514 commit 5ab9bf4

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.rubocop_todo.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This configuration was generated by
22
# `rubocop --auto-gen-config`
3-
# on 2024-02-01 15:28:54 UTC using RuboCop version 1.48.1.
3+
# on 2024-05-12 16:41:11 UTC using RuboCop version 1.63.5.
44
# The point is for the user to remove these configuration records
55
# one by one as the offenses are removed from the code base.
66
# Note that changes in the inspected code, or installation of new
@@ -20,6 +20,7 @@ Lint/EmptyBlock:
2020
- 'test/hyperclient/entry_point_test.rb'
2121

2222
# Offense count: 4
23+
# Configuration parameters: AllowedParentClasses.
2324
Lint/MissingSuper:
2425
Exclude:
2526
- 'lib/hyperclient/attributes.rb'

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
### 2.0.1 (Next)
44

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

78
### 2.0.0 (2024/02/01)

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ end
1313

1414
group :development, :test do
1515
gem 'rake'
16-
gem 'rubocop', '~> 1.48.0', require: false
16+
gem 'rubocop', '~> 1.63.5', require: false
1717
gem 'rubocop-minitest', require: false
1818
gem 'rubocop-rake', require: false
1919
gem 'simplecov', require: false

examples/splines_api.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
# enumerate splines
99
api.splines.each do |spline|
10-
puts spline.uuid.to_s
10+
puts spline.uuid
1111
puts " reticulated: #{spline.reticulated ? 'yes' : 'no'}"
1212
puts " thumbnail: #{spline['images:thumbnail']}"
1313
end

0 commit comments

Comments
 (0)