summaryrefslogtreecommitdiff
path: root/trunk/sample/drb/dqlib.rb
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/sample/drb/dqlib.rb')
-rw-r--r--trunk/sample/drb/dqlib.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/trunk/sample/drb/dqlib.rb b/trunk/sample/drb/dqlib.rb
deleted file mode 100644
index 75f2e6115b..0000000000
--- a/trunk/sample/drb/dqlib.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-class DQEntry
- def initialize(name)
- @name = name
- end
-
- def greeting
- "Hello, This is #{@name}."
- end
- alias to_s greeting
-end
-
-if __FILE__ == $0
- puts DQEntry.new('DQEntry')
-end