Beta Shell
v2.0 ยท web2.us.cloudlogin.co
[FM]
[CMD]
[PHP]
[DB]
[INFO]
[SEC]
File Manager
~
/
usr
/
share
/
gems
/
gems
/
rdoc-6.0.1.1
/
lib
/
rdoc
/
stats
Upload
5 items
Name
Size
Perms
Modified
Actions
[ .. / .. ]
normal.rb
1.56 KB
-rw-r--r--
2021-04-05 11:46:35
Edit
Del
quiet.rb
832 B
-rw-r--r--
2021-04-05 11:46:35
Edit
Del
verbose.rb
1012 B
-rw-r--r--
2021-04-05 11:46:35
Edit
Del
Editing: verbose.rb
(1012 B)
Path: /usr/share/gems/gems/rdoc-6.0.1.1/lib/rdoc/stats/verbose.rb
Back
# frozen_string_literal: true ## # 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