[rubygems/rubygems] Fix printing requirement based spec filters

I don't understand what was the idea of "!=" here.

https://github.com/rubygems/rubygems/commit/06d5f1dcf1
This commit is contained in:
David Rodríguez 2024-05-31 12:22:14 +02:00 committed by git
parent 0fb73a8eda
commit eb46b0924f

View File

@ -14,7 +14,7 @@ class RequirementChecker < Proc
attr_accessor :provided
def inspect
"\"!= #{provided}\""
"\"#{provided}\""
end
end