Sha256: 42c54f37ef9cd78a9c113681db9329747e76d38ecfdaa24de2eeb7ed82bea550

Contents?: true

Size: 982 Bytes

Versions: 207

Compression:

Stored size: 982 Bytes

Contents

##
# 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


Version data entries

207 entries across 155 versions & 25 rubygems

Version Path
rdoc-3.5 lib/rdoc/stats/verbose.rb
rdoc-3.4 lib/rdoc/stats/verbose.rb
rdoc-3.3 lib/rdoc/stats/verbose.rb
rdoc-3.2 lib/rdoc/stats/verbose.rb
rdoc-3.1 lib/rdoc/stats/verbose.rb
rdoc-3.0.1 lib/rdoc/stats/verbose.rb
rdoc-3.0 lib/rdoc/stats/verbose.rb