class Gem::DependencyResolver::ActivationRequest

def ==(other)

def ==(other)
  case other
  when Gem::Specification
    @spec == other
  when ActivationRequest
    @spec == other.spec && @request == other.request
  else
    false
  end
end