Class: ListFormatter
- Inherits:
-
ArrayFormatter
- Object
- BaseFormatter
- ArrayFormatter
- ListFormatter
- Defined in:
- lib/teuton/report/formatter/list_formatter.rb
Overview
ListFormatter class
Instance Method Summary collapse
-
#initialize(report) ⇒ ListFormatter
constructor
A new instance of ListFormatter.
- #process ⇒ Object
Methods inherited from ArrayFormatter
#build_data, #build_final_data, #build_history_data, #build_hof_data, #build_initial_data
Methods inherited from BaseFormatter
Constructor Details
#initialize(report) ⇒ ListFormatter
Returns a new instance of ListFormatter.
7 8 9 10 |
# File 'lib/teuton/report/formatter/list_formatter.rb', line 7 def initialize(report) super(report) @data = {} end |
Instance Method Details
#process ⇒ Object
12 13 14 15 16 17 18 19 20 |
# File 'lib/teuton/report/formatter/list_formatter.rb', line 12 def process build_data process_config process_logs process_groups process_results process_hof deinit end |