Skip to content

Commit 66c1745

Browse files
authored
bundle update (rails#50516)
This commit is meant to accomplish two things: - update gems with precompiled C extensions (nokogiri) so that Rails' lockfile can be `bundle install`d on Ruby 3.3 - remove some Gemfile conditionals for Ruby < 3 now that 3.1 is the minimum version Additionally, a requirement is added to ignore mdl 0.13.0 because it raises false positive warnings. The commit introducing those warnings has been reverted but there has not been a release since the revert.
1 parent 361f296 commit 66c1745

File tree

2 files changed

+131
-130
lines changed

2 files changed

+131
-130
lines changed

Gemfile

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,15 @@
33
source "https://rubygems.org"
44
gemspec
55

6-
if RUBY_VERSION < "3"
7-
gem "minitest", ">= 5.15.0", "< 5.16"
8-
else
9-
gem "minitest", ">= 5.15.0"
10-
end
6+
gem "minitest", ">= 5.15.0"
117

128
# We need a newish Rake since Active Job sets its test tasks' descriptions.
139
gem "rake", ">= 13"
1410

1511
gem "sprockets-rails", ">= 2.0.0"
1612
gem "propshaft", ">= 0.1.7"
1713
gem "capybara", ">= 3.39"
18-
if RUBY_VERSION < "3"
19-
gem "selenium-webdriver", "<= 4.9.0"
20-
gem "webdrivers"
21-
else
22-
gem "selenium-webdriver", ">= 4.11.0"
23-
end
14+
gem "selenium-webdriver", ">= 4.11.0"
2415

2516
gem "rack-cache", "~> 1.2"
2617
gem "stimulus-rails"
@@ -62,7 +53,7 @@ group :rubocop do
6253
end
6354

6455
group :mdl do
65-
gem "mdl", require: false
56+
gem "mdl", "!= 0.13.0", require: false
6657
end
6758

6859
group :doc do

0 commit comments

Comments
 (0)