Skip to content

Commit

Permalink
Merge pull request #441 from sanger/depfu/update/rubocop-rspec-3.0.3
Browse files Browse the repository at this point in the history
🚨 [security] Update rubocop-rspec 2.31.0 → 3.0.3 (major)
  • Loading branch information
stevieing authored Jul 23, 2024
2 parents 58976e4 + 2ed967c commit 4a9d9cc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 14 deletions.
13 changes: 2 additions & 11 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -239,10 +239,6 @@ GEM
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.31.3)
parser (>= 3.3.1.0)
rubocop-capybara (2.21.0)
rubocop (~> 1.41)
rubocop-factory_bot (2.26.0)
rubocop (~> 1.41)
rubocop-performance (1.21.1)
rubocop (>= 1.48.1, < 2.0)
rubocop-ast (>= 1.31.1, < 2.0)
Expand All @@ -251,13 +247,8 @@ GEM
rack (>= 1.1)
rubocop (>= 1.33.0, < 2.0)
rubocop-ast (>= 1.31.1, < 2.0)
rubocop-rspec (2.31.0)
rubocop (~> 1.40)
rubocop-capybara (~> 2.17)
rubocop-factory_bot (~> 2.22)
rubocop-rspec_rails (~> 2.28)
rubocop-rspec_rails (2.29.0)
rubocop (~> 1.40)
rubocop-rspec (3.0.3)
rubocop (~> 1.61)
ruby-progressbar (1.13.0)
rubyzip (2.3.2)
sass-rails (6.0.0)
Expand Down
6 changes: 3 additions & 3 deletions config/application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ class Application < Rails::Application

config.load_defaults 7.0

config.mailer = YAML.load_file("#{Rails.root}/config/mailer.yml")[Rails.env]
config.mailer = YAML.load_file(Rails.root.join('config/mailer.yml').to_s)[Rails.env]
config.autoload_paths += %W[#{config.root}/lib/utils]
config.disable_animations = false

config.autoload_paths += %W[#{Rails.root}/app/presenters]
config.eager_load_paths += %W[#{Rails.root}/app/presenters]
config.autoload_paths += %W[#{Rails.root.join('app/presenters')}]
config.eager_load_paths += %W[#{Rails.root.join('app/presenters')}]

# Enabling the behaviour where 'belongs_to' associations are required by default.
# (https://guides.rubyonrails.org/upgrading_ruby_on_rails.html#active-record-belongs-to-required-by-default-option)
Expand Down

0 comments on commit 4a9d9cc

Please sign in to comment.