Methods
L
N
P
Class Public methods
new()
# File sample/drb/ring_inspect.rb, line 5
def initialize
end
Instance Public methods
list(idx = -1)
# File sample/drb/ring_inspect.rb, line 16
def list(idx = -1)
  if idx < 0
    ts = primary
  else
    ts = list_place[idx]
    raise "RingNotFound" unless ts
  end
  ts.read_all([:name, nil, nil, nil])
end
list_place()
# File sample/drb/ring_inspect.rb, line 12
def list_place
  Rinda::RingFinger.to_a
end
primary()
# File sample/drb/ring_inspect.rb, line 8
def primary
  Rinda::RingFinger.primary
end