summaryrefslogtreecommitdiff
path: root/trunk/sample/drb/gw_cu.rb
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/sample/drb/gw_cu.rb')
-rw-r--r--trunk/sample/drb/gw_cu.rb28
1 files changed, 0 insertions, 28 deletions
diff --git a/trunk/sample/drb/gw_cu.rb b/trunk/sample/drb/gw_cu.rb
deleted file mode 100644
index 0e5ed36b8f..0000000000
--- a/trunk/sample/drb/gw_cu.rb
+++ /dev/null
@@ -1,28 +0,0 @@
-require 'drb/drb'
-require 'drb/unix'
-
-class Foo
- include DRbUndumped
-
- def foo(n)
- n + n
- end
-
- def bar(n)
- yield(n) + yield(n)
- end
-end
-
-DRb.start_service('drubyunix:', nil)
-puts DRb.uri
-
-ro = DRbObject.new(nil, ARGV.shift)
-ro[:unix] = Foo.new
-gets
-
-it = ro[:tcp]
-p [it, it.foo(1)]
-gets
-
-p it.bar('2') {|n| n * 3}
-gets