class RBT::ShowStatistics

Public Class Methods

[](i = '') click to toggle source
#

RBT::ShowStatistics[]

#
# File lib/rbt/statistics/show_statistics.rb, line 65
def self.[](i = '')
  new(i)
end
new( commandline_arguments = nil, run_already = true ) click to toggle source
#

initialize

#
# File lib/rbt/statistics/show_statistics.rb, line 31
def initialize(
    commandline_arguments = nil,
    run_already           = true
  )
  reset
  set_commandline_arguments(
    commandline_arguments
  )
  run if run_already
end

Public Instance Methods

reset() click to toggle source
#

reset (reset tag)

#
Calls superclass method RBT::CompileBase#reset
# File lib/rbt/statistics/show_statistics.rb, line 45
def reset
  super()
end
run() click to toggle source
#

run (run tag)

#
# File lib/rbt/statistics/show_statistics.rb, line 52
def run
  cliner
  RBT::CompileStrategies.new
  cliner
  RBT::ShowHowManyFilesAreTracked.new
  cliner
  RBT.show_compile_time_statistics
  cliner
end