Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bundle update, update rubocop TargetRubyVersion #4695

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ require:
AllCops:
NewCops: enable
SuggestExtensions: false
TargetRubyVersion: 3.1
TargetRubyVersion: 3.4
Exclude:
- 'db/**/*'
- 'script/**/*'
Expand Down
17 changes: 8 additions & 9 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ GEM
coercible (1.0.0)
descendants_tracker (~> 0.0.1)
concurrent-ruby (1.3.4)
connection_pool (2.4.1)
connection_pool (2.5.0)
coveralls_reborn (0.28.0)
simplecov (~> 0.22.0)
term-ansicolor (~> 1.7)
Expand Down Expand Up @@ -265,7 +265,7 @@ GEM
ed25519 (1.3.0)
email_validator (2.2.4)
activemodel
erb_lint (0.7.0)
erb_lint (0.8.0)
activesupport
better_html (>= 2.0.1)
parser (>= 2.7.1.4)
Expand Down Expand Up @@ -309,8 +309,9 @@ GEM
health-monitor-rails (12.4.0)
railties (>= 6.1)
high_voltage (4.0.0)
honeybadger (5.26.1)
honeybadger (5.26.2)
logger
ostruct
http (5.2.0)
addressable (~> 2.8)
base64 (~> 0.1)
Expand Down Expand Up @@ -373,7 +374,7 @@ GEM
llhttp-ffi (0.5.0)
ffi-compiler (~> 1.0)
rake (~> 13.0)
logger (1.6.4)
logger (1.6.5)
lograge (0.14.0)
actionpack (>= 4)
activesupport (>= 4)
Expand All @@ -388,10 +389,9 @@ GEM
net-imap
net-pop
net-smtp
marc (1.2.0)
marc (1.3.0)
nokogiri (~> 1.0)
rexml
scrub_rb (>= 1.0.1, < 2)
unf
marc-fastxmlwriter (1.1.0)
marc (~> 1.0)
marcel (1.0.4)
Expand Down Expand Up @@ -569,7 +569,7 @@ GEM
rspec-support (3.13.2)
rspec_junit_formatter (0.6.0)
rspec-core (>= 2, < 4, != 2.12.0)
rubocop (1.69.2)
rubocop (1.70.0)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
Expand Down Expand Up @@ -700,7 +700,6 @@ GEM
yell
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unf (0.2.0)
unicode-display_width (2.6.0)
uri (1.0.2)
useragent (0.16.11)
Expand Down
2 changes: 1 addition & 1 deletion app/models/requests/submissions/recap.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def handle

def send_mail
return if errors.present?
Requests::RequestMailer.send("#{service_type}_email", submission).deliver_later unless service_type == 'recap_edd' || service_type == 'recap'
Requests::RequestMailer.send("#{service_type}_email", submission).deliver_later unless ['recap_edd', 'recap'].include?(service_type)
Requests::RequestMailer.send("#{service_type}_confirmation", submission).deliver_later
end

Expand Down
1 change: 0 additions & 1 deletion config/initializers/ez_proxy_hosts.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# frozen_string_literal: true
require 'set'

host_set = Set.new

Expand Down
Loading