mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
30ff0b6aeb
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5698 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
30 lines
422 B
Ruby
30 lines
422 B
Ruby
require 'rinda/ring'
|
|
require 'drb/drb'
|
|
|
|
class Inspector
|
|
def initialize
|
|
end
|
|
|
|
def primary
|
|
Rinda::RingFinger.primary
|
|
end
|
|
|
|
def list_place
|
|
Rinda::RingFinger.to_a
|
|
end
|
|
|
|
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
|
|
end
|
|
|
|
def main
|
|
DRb.start_service
|
|
r = Inspector.new
|
|
end
|