1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Merge prepare version of RubyGems 3.2.0

This commit is contained in:
Hiroshi SHIBATA 2020-12-08 16:33:39 +09:00
parent 6a6a24df9b
commit 4aca77edde
Notes: git 2020-12-08 17:30:31 +09:00
134 changed files with 2002 additions and 745 deletions

View file

@ -28,12 +28,20 @@ class Gem::Resolver::ActivationRequest
when Gem::Specification
@spec == other
when Gem::Resolver::ActivationRequest
@spec == other.spec && @request == other.request
@spec == other.spec
else
false
end
end
def eql?(other)
self == other
end
def hash
@spec.hash
end
##
# Is this activation request for a development dependency?