class RBT::Action::Statistics::ShowAllStatistics

Public Class Methods

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

RBT::Action::Statistics::ShowAllStatistics[]

#
# File lib/rbt/actions/individual_actions/statistics/show_all_statistics.rb, line 66
def self.[](i = ARGV)
  new(i)
end
new( i = ARGV, run_already = true, &block ) click to toggle source
#

initialize

#
# File lib/rbt/actions/individual_actions/statistics/show_all_statistics.rb, line 32
def initialize(
    i           = ARGV,
    run_already = true,
    &block
  )
  reset
  set_commandline_arguments(i)
  run if run_already
end

Public Instance Methods

reset() click to toggle source
#

reset (reset tag)

#
Calls superclass method RBT::Action#reset
# File lib/rbt/actions/individual_actions/statistics/show_all_statistics.rb, line 45
def reset
  super()
  infer_the_namespace
end
run() click to toggle source
#

run (run tag)

#
# File lib/rbt/actions/individual_actions/statistics/show_all_statistics.rb, line 53
def run
  cliner
  action(:compile_strategies)
  cliner
  action(:show_how_many_files_are_tracked)
  cliner
  action(:show_compile_time_statistics)
  cliner
end