summaryrefslogtreecommitdiff
path: root/ruby_1_9_3/lib/rdoc/single_class.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_1_9_3/lib/rdoc/single_class.rb')
-rw-r--r--ruby_1_9_3/lib/rdoc/single_class.rb23
1 files changed, 0 insertions, 23 deletions
diff --git a/ruby_1_9_3/lib/rdoc/single_class.rb b/ruby_1_9_3/lib/rdoc/single_class.rb
deleted file mode 100644
index e48758d9c8..0000000000
--- a/ruby_1_9_3/lib/rdoc/single_class.rb
+++ /dev/null
@@ -1,23 +0,0 @@
-require 'rdoc/class_module'
-
-##
-# A singleton class
-
-class RDoc::SingleClass < RDoc::ClassModule
-
- ##
- # Adds the superclass to the included modules.
-
- def ancestors
- superclass ? super + [superclass] : super
- end
-
- ##
- # The definition of this singleton class, <tt>class << MyClassName</tt>
-
- def definition
- "class << #{full_name}"
- end
-
-end
-