Class: MoodleCSVFormatter
- Inherits:
-
ResumeArrayFormatter
- Object
- BaseFormatter
- ResumeArrayFormatter
- MoodleCSVFormatter
- Defined in:
- lib/teuton/report/formatter/moodle_csv_formatter.rb
Instance Method Summary collapse
-
#initialize(report) ⇒ MoodleCSVFormatter
constructor
initialize instance.
-
#process ⇒ Object
Process internal data and generates data with format.
Methods inherited from ResumeArrayFormatter
#build_cases_data, #build_data, #build_final_data, #build_hof_data, #build_initial_data
Methods inherited from BaseFormatter
Constructor Details
#initialize(report) ⇒ MoodleCSVFormatter
initialize instance
9 10 11 12 |
# File 'lib/teuton/report/formatter/moodle_csv_formatter.rb', line 9 def initialize(report) super(report) @data = {} end |
Instance Method Details
#process ⇒ Object
Process internal data and generates data with format
16 17 18 19 20 |
# File 'lib/teuton/report/formatter/moodle_csv_formatter.rb', line 16 def process build_data process_cases deinit end |