repo.or.cz
/
rbx.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Updated MSpec source to 1c3ee1c8.
[rbx.git]
/
test
/
mri
/
drb
/
ut_port.rb
blob
337e0eda8627ea74a251c77f594edae0aae5e0c4
1
require 'drb/drb'
2
require 'drb/extserv'
3
4
if __FILE__ == $0
5
def ARGV.shift
6
it = super()
7
raise "usage: #{$0} <uri> <name>" unless it
8
it
9
end
10
11
DRb.start_service('druby://:8473', [1, 2, 'III', 4, "five", 6])
12
es = DRb::ExtServ.new(ARGV.shift, ARGV.shift)
13
DRb.thread.join
14
end