12 lines
202 B
Ruby
12 lines
202 B
Ruby
require 'csv'
|
|
|
|
class Csvfile
|
|
|
|
def writeToCsv(filePath,whatToWrite)
|
|
CSV.open(filePath.to_s, "a") do |csv|
|
|
# csv << ["row", "of", "CSV", "data"]
|
|
csv << whatToWrite
|
|
end
|
|
end
|
|
|
|
end |