Sha256: b995ce0d54a49344dc58aa2fb143c894946d47d08ca095f32982986290f48358
Contents?: true
Size: 191 Bytes
Versions: 6
Compression:
Stored size: 191 Bytes
Contents
module TablePal class CSVFormatted def initialize(table:) table.rows.each do |row| puts row.cells_including_empty.map(&:formatted).join(',') end end end end
Version data entries
6 entries across 6 versions & 1 rubygems