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

CI: update build matrix - Ruby 3.3 & Rails 7.1 #1204

Closed
wants to merge 8 commits into from
Prev Previous commit
Add conditional test dependency on base64, mutex_m, bigdecimal
  • Loading branch information
orien committed Feb 19, 2024
commit c45899b986da661afe20ae486b845d3139350df8
8 changes: 8 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,14 @@ group :test do
gem 'zeitwerk', :require => false
end
gem 'loofah', '< 2.21.0', :require => false if RUBY_VERSION < '2.6'

# TODO: remove these requires once activesupport has such dependencies
# in all versions of Rails we test against on Ruby >=3.4 (and head).
if RUBY_VERSION >= '3.4'
gem 'base64', :require => false
gem 'bigdecimal', :require => false
gem 'mutex_m', :require => false
end
end

group :rubocop do
Expand Down
Loading