Class: Hashira::Report::MetricsTable
- Inherits:
-
Object
- Object
- Hashira::Report::MetricsTable
- Defined in:
- lib/hashira/report/metrics_table.rb
Constant Summary collapse
- TOP =
25- HEADERS =
%w[package TC Ca Ce I Cyc].freeze
Instance Method Summary collapse
-
#initialize(graph, top: TOP, io: $stdout) ⇒ MetricsTable
constructor
A new instance of MetricsTable.
- #print ⇒ Object
Constructor Details
#initialize(graph, top: TOP, io: $stdout) ⇒ MetricsTable
Returns a new instance of MetricsTable.
6 7 8 9 10 |
# File 'lib/hashira/report/metrics_table.rb', line 6 def initialize(graph, top: TOP, io: $stdout) @graph = graph @top = top @io = io end |