Method: TableSetting::Sheet#to_csv

Defined in:
lib/table_setting/sheet.rb

#to_csvObject



49
50
51
52
53
54
55
56
# File 'lib/table_setting/sheet.rb', line 49

def to_csv
  csv_string = CSV.generate do |csv|
    rows.each do |row|
      csv << row.to_a
    end
  end
  csv_string
end