Sha256: b0ac8329c68ce5a627d0b9b4ff6e7b7c648521b01af4108398c87314345be718
Contents?: true
Size: 275 Bytes
Versions: 16
Compression:
Stored size: 275 Bytes
Contents
# frozen_string_literal: false module DRb class DRbObject # :nodoc: def ==(other) return false unless DRbObject === other (@ref == other.__drbref) && (@uri == other.__drburi) end def hash [@uri, @ref].hash end alias eql? == end end
Version data entries
16 entries across 16 versions & 9 rubygems