aboutsummaryrefslogtreecommitdiffstats
path: root/lib/drb/eq.rb
blob: 15ca5cae42aa32ccac7ea63cdb23326eebe28848 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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