blob: 553f30c598a49cb6b2f97e5cd956ea77bbe0a0c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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
|