new(verbosity = 1) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rdoc/stats.rb, line 13
  def initialize(verbosity = 1)
    @num_classes = 0
    @num_files   = 0
    @num_methods = 0
    @num_modules = 0

    @start = Time.now

    @display = case verbosity
               when 0 then Quiet.new
               when 1 then Normal.new
               else        Verbose.new
               end
  end
Register or log in to add new notes.