mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
3cd9a01e6f
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32282 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
30 lines
442 B
Ruby
30 lines
442 B
Ruby
require 'drb/drb'
|
|
require 'drb/extserv'
|
|
|
|
class Foo
|
|
include DRbUndumped
|
|
end
|
|
|
|
class Bar
|
|
include DRbUndumped
|
|
def initialize
|
|
@foo = Foo.new
|
|
end
|
|
attr_reader :foo
|
|
|
|
def foo?(foo)
|
|
@foo == foo
|
|
end
|
|
end
|
|
|
|
if __FILE__ == $0
|
|
def ARGV.shift
|
|
it = super()
|
|
raise "usage: #{$0} <uri> <name>" unless it
|
|
it
|
|
end
|
|
|
|
DRb.start_service('druby://:0', Bar.new)
|
|
es = DRb::ExtServ.new(ARGV.shift, ARGV.shift)
|
|
DRb.thread.join
|
|
end
|