Class: CSVWriter
- Inherits:
-
Object
- Object
- CSVWriter
- Defined in:
- lib/output/csv/csv_writer.rb
Overview
Singleton class to write the provided output in a csv-formatted file
Class Method Summary collapse
-
.output(filename, person, tasks, additions) ⇒ Object
public entry point to create the csv file.
-
.write(filename, output) ⇒ Object
method to print the output into the file.
Class Method Details
.output(filename, person, tasks, additions) ⇒ Object
public entry point to create the csv file
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/output/csv/csv_writer.rb', line 13 def self.output(filename, person, tasks, additions) output = Array.new() output << AttributeStringFactory.get_attributes_to_person(person) output << person.to_file output << String.new() output << AttributeStringFactory.get_attributes_to_task tasks.each { |task| output << task.to_file } output << String.new() additions.each { |entry| output << entry } write(filename, output) end |
.write(filename, output) ⇒ Object
method to print the output into the file
37 38 39 40 41 42 43 |
# File 'lib/output/csv/csv_writer.rb', line 37 def self.write(filename, output) CSV.open(filename, "wb", {:col_sep => ";"}) { |csv| output.each { |entry| csv << entry.split(";") } } end |