class Gorsse::Client
Attributes
uid[R]
Public Class Methods
new(uid)
click to toggle source
# File lib/gorsse/client.rb, line 5 def initialize(uid) @uid = uid end
Public Instance Methods
eql?(other)
click to toggle source
# File lib/gorsse/client.rb, line 9 def eql?(other) other.is_a?(Client) && uid == other.uid end