Skip to content

Commit

Permalink
[TASK] Update development dependencies (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshRpowell authored Oct 5, 2023
1 parent e1b0325 commit 94ef8ce
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 8 deletions.
36 changes: 30 additions & 6 deletions .rubocop_todo.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,36 @@
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2022-02-18 18:43:24 UTC using RuboCop version 1.25.1.
# `rubocop --auto-gen-config --exclude-limit 10000`
# on 2023-10-05 13:54:27 UTC using RuboCop version 1.56.4.
# 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
# versions of RuboCop, may require this file to be generated again.

# Offense count: 1
# This cop supports safe autocorrection (--autocorrect).
# Configuration parameters: Severity, Include.
# Include: **/*.gemspec
Gemspec/DeprecatedAttributeAssignment:
Exclude:
- 'page_title_helper.gemspec'

# Offense count: 5
# Configuration parameters: EnforcedStyle, AllowedGems, Include.
# SupportedStyles: Gemfile, gems.rb, gemspec
# Include: **/*.gemspec, **/Gemfile, **/gems.rb
Gemspec/DevelopmentDependencies:
Exclude:
- 'page_title_helper.gemspec'

# Offense count: 1
# Configuration parameters: AllowedParentClasses.
Lint/MissingSuper:
Exclude:
- 'test/test_helper.rb'

# Offense count: 2
# Configuration parameters: CountComments, CountAsOne, ExcludedMethods, IgnoredMethods.
# IgnoredMethods: refine
# Configuration parameters: CountComments, CountAsOne, AllowedMethods, AllowedPatterns.
# AllowedMethods: refine
Metrics/BlockLength:
Max: 103

Expand All @@ -23,14 +40,21 @@ Metrics/ClassLength:
Max: 105

# Offense count: 1
# This cop supports unsafe autocorrection (--autocorrect-all).
# Configuration parameters: EnforcedStyleForLeadingUnderscores.
# SupportedStylesForLeadingUnderscores: disallowed, required, optional
Naming/MemoizedInstanceVariableName:
Exclude:
- 'test/test_helper.rb'

# Offense count: 1
# Cop supports --auto-correct.
# This cop supports unsafe autocorrection (--autocorrect-all).
Rails/RootPathnameMethods:
Exclude:
- 'lib/page_title_helper.rb'

# Offense count: 1
# This cop supports unsafe autocorrection (--autocorrect-all).
# Configuration parameters: EnforcedStyle.
# SupportedStyles: always, always_true, never
Style/FrozenStringLiteralComment:
Expand All @@ -43,7 +67,7 @@ Style/MixinUsage:
- 'Rakefile'

# Offense count: 1
# Cop supports --auto-correct.
# This cop supports unsafe autocorrection (--autocorrect-all).
# Configuration parameters: EnforcedStyle, Autocorrect.
# SupportedStyles: module_function, extend_self, forbidden
Style/ModuleFunction:
Expand Down
4 changes: 2 additions & 2 deletions page_title_helper.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ Gem::Specification.new do |s|
s.add_dependency 'rails', '>= 6.0.0', '< 7.1'

s.add_development_dependency 'rake', '~> 13.0.6'
s.add_development_dependency 'rubocop', '~> 1.26.1'
s.add_development_dependency 'rubocop-rails', '~> 2.14.2'
s.add_development_dependency 'rubocop', '~> 1.56.4'
s.add_development_dependency 'rubocop-rails', '~> 2.21.2'
s.add_development_dependency 'rubocop-rake', '~> 0.6.0'
s.add_development_dependency 'shoulda', '~> 4.0.0'
end

0 comments on commit 94ef8ce

Please sign in to comment.