We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 394d7a6 commit fcf6279Copy full SHA for fcf6279
bundler/lib/bundler/rubygems_ext.rb
@@ -259,7 +259,7 @@ def ===(other)
259
# version
260
(
261
(@os != "linux" && (@version.nil? || other.version.nil?)) ||
262
- (@os == "linux" && ((@version.nil? && ["gnu", "musl"].include?(other.version)) || (@version == "gnu" && other.version.nil?))) ||
+ (@os == "linux" && (other.version == "gnu#{@version}" || other.version == "musl#{@version}" || @version == "gnu#{other.version}")) ||
263
@version == other.version
264
)
265
end
0 commit comments