Skip to content

Commit c0ae2ef

Browse files
committed
Upgraded RuboCop, removed unused K7.
1 parent 71c7c54 commit c0ae2ef

File tree

4 files changed

+4
-73
lines changed

4 files changed

+4
-73
lines changed

.rubocop_todo.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# This configuration was generated by
22
# `rubocop --auto-gen-config`
3-
# on 2024-03-30 08:58:43 UTC using RuboCop version 1.56.0.
3+
# on 2024-11-24 21:25:04 UTC using RuboCop version 1.68.0.
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
77
# versions of RuboCop, may require this file to be generated again.
88

99
# Offense count: 13
1010
# This cop supports unsafe autocorrection (--autocorrect-all).
11-
# Configuration parameters: SkipBlocks, EnforcedStyle.
11+
# Configuration parameters: SkipBlocks, EnforcedStyle, OnlyStaticConstants.
1212
# SupportedStyles: described_class, explicit
1313
RSpec/DescribedClass:
1414
Exclude:

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ group :development, :test do
1313
gem 'pry'
1414
gem 'rake'
1515
gem 'rspec'
16-
gem 'rubocop', '1.66.1'
16+
gem 'rubocop', '1.68.0'
1717
gem 'rubocop-rake'
1818
gem 'rubocop-rspec'
1919
gem 'vcr'

spec/fixtures/strava/Strava_Api_Client_upload_activity/returns_a_Strava_Errors_UploadFailed_on_upload_error.yml

Lines changed: 0 additions & 69 deletions
This file was deleted.

spec/support/vcr.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
VCR.configure do |config|
77
config.cassette_library_dir = 'spec/fixtures/strava'
88
config.hook_into :webmock
9-
config.default_cassette_options = { record: :new_episodes }
9+
# config.default_cassette_options = { record: :new_episodes }
1010
config.configure_rspec_metadata!
1111
config.before_record do |i|
1212
i.request.headers['Authorization'] = ['Bearer access-token'] if ENV.key?('STRAVA_ACCESS_TOKEN')

0 commit comments

Comments
 (0)