class TablePal::CSVFormatted
Public Class Methods
new(table:)
click to toggle source
# File lib/csv_formatted.rb, line 4 def initialize(table:) table.rows.each do |row| puts row.cells_including_empty.map(&:formatted).join(',') end end