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

Version Path
table_pal-0.3.3 lib/csv_formatted.rb
table_pal-0.3.2 lib/csv_formatted.rb
table_pal-0.3.1 lib/csv_formatted.rb
table_pal-0.3.0 lib/csv_formatted.rb
table_pal-0.2.0 lib/csv_formatted.rb
table_pal-0.1.0 lib/csv_formatted.rb