summaryrefslogtreecommitdiff
path: root/ruby_1_9_3/lib/rdoc/stats/verbose.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_1_9_3/lib/rdoc/stats/verbose.rb')
-rw-r--r--ruby_1_9_3/lib/rdoc/stats/verbose.rb45
1 files changed, 0 insertions, 45 deletions
diff --git a/ruby_1_9_3/lib/rdoc/stats/verbose.rb b/ruby_1_9_3/lib/rdoc/stats/verbose.rb
deleted file mode 100644
index 430809ae07..0000000000
--- a/ruby_1_9_3/lib/rdoc/stats/verbose.rb
+++ /dev/null
@@ -1,45 +0,0 @@
-##
-# Stats printer that prints everything documented, including the documented
-# status
-
-class RDoc::Stats::Verbose < RDoc::Stats::Normal
-
- ##
- # Returns a marker for RDoc::CodeObject +co+ being undocumented
-
- def nodoc co
- " (undocumented)" unless co.documented?
- end
-
- def print_alias as # :nodoc:
- puts " alias #{as.new_name} #{as.old_name}#{nodoc as}"
- end
-
- def print_attribute attribute # :nodoc:
- puts " #{attribute.definition} #{attribute.name}#{nodoc attribute}"
- end
-
- def print_class(klass) # :nodoc:
- puts " class #{klass.full_name}#{nodoc klass}"
- end
-
- def print_constant(constant) # :nodoc:
- puts " #{constant.name}#{nodoc constant}"
- end
-
- def print_file(files_so_far, file) # :nodoc:
- super
- puts
- end
-
- def print_method(method) # :nodoc:
- puts " #{method.singleton ? '::' : '#'}#{method.name}#{nodoc method}"
- end
-
- def print_module(mod) # :nodoc:
- puts " module #{mod.full_name}#{nodoc mod}"
- end
-
-end
-
-