Skip to content

Commit

Permalink
CI: delayed_job / Rails v7.2.0 fix
Browse files Browse the repository at this point in the history
fix a securerandom dependency issue now that Rails v7.2.0 has dropped
and ActiveSupport requires it
  • Loading branch information
fallwith committed Aug 12, 2024
1 parent 3dc3e2c commit 5f6e1b1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/multiverse/suites/delayed_job/Envfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,13 @@ def bigdecimal
end
end

# delayed_job depends on activesupport and activesupport >= v7.2.0 will
# depend on securerandom >= 0.3, which may conflict with the "already activated"
# (built in for Ruby < v3.4.0) version of securerandom, so just declare a
# top-level >= 0.3 dependency.
boilerplate_gems = <<~SQLITE
gem 'rack'
gem 'securerandom', '>= 0.3'
#{sqlite}
#{bigdecimal}

Expand Down

0 comments on commit 5f6e1b1

Please sign in to comment.