Sha256: 4e9013435be57a3f3781547775bc70bec66ecd60e1db9483897ee956bc07e3a4

Contents?: true

Size: 191 Bytes

Versions: 6

Compression:

Stored size: 191 Bytes

Contents

module TablePal
  class CSVUnformatted

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

  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

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