class TablePal::CSVUnformatted

Public Class Methods

new(table:) click to toggle source
# File lib/csv_unformatted.rb, line 4
def initialize(table:)
  table.rows.each do |row|
    puts row.cells_including_empty.map(&:content).join(',')
  end
end