[rubygems/rubygems] Remove unnecessary rubygems filters

Since the lowest supported version is now 3.4.1.

https://github.com/rubygems/rubygems/commit/d00e03c52e
This commit is contained in:
David Rodríguez 2025-08-08 10:56:59 +02:00 committed by Hiroshi SHIBATA
parent d4bf58b56e
commit 3c669e2d41
2 changed files with 3 additions and 3 deletions

View File

@ -1432,7 +1432,7 @@ RSpec.describe "bundle install with specific platforms" do
end
end
it "does not fail when a platform variant is incompatible with the current ruby and another equivalent platform specific variant is part of the resolution", rubygems: ">= 3.3.21" do
it "does not fail when a platform variant is incompatible with the current ruby and another equivalent platform specific variant is part of the resolution" do
build_repo4 do
build_gem "nokogiri", "1.15.5"
@ -1578,7 +1578,7 @@ RSpec.describe "bundle install with specific platforms" do
end
end
it "adds current musl platform, when there are also gnu variants", rubygems: ">= 3.3.21" do
it "adds current musl platform, when there are also gnu variants" do
build_repo4 do
build_gem "rcee_precompiled", "0.5.0" do |s|
s.platform = "x86_64-linux-gnu"

View File

@ -387,7 +387,7 @@ RSpec.describe "Resolving platform craziness" do
should_resolve_as %w[thin-1.2.7-x64-mingw-ucrt]
end
it "finds universal-mingw gems on x64-mingw-ucrt", rubygems: ">= 3.3.18" do
it "finds universal-mingw gems on x64-mingw-ucrt" do
platform "x64-mingw-ucrt"
dep "win32-api"
should_resolve_as %w[win32-api-1.5.1-universal-mingw32]