Sha256: 84299f7678693aafb319bcd5a586b756e732aa18260b9682898051c6b9ea1737
Contents?: true
Size: 253 Bytes
Versions: 10
Compression:
Stored size: 253 Bytes
Contents
require 'drb/drb' module DRb class DRbObject 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
10 entries across 10 versions & 3 rubygems