module TablePal class CSVUnformatted def initialize(table:) table.rows.each do |row| puts row.cells_including_empty.map(&:content).join(',') end end end end