Sha256: 10b2516b2f234567da05659892c5b84971bdcda6d03a8a6b18cb9b0ab1fd1e6a

Contents?: true

Size: 532 Bytes

Versions: 1

Compression:

Stored size: 532 Bytes

Contents

# dullard

Super simple, super fast stream-based XLSX parsing.  Suitable for very large
files.

Requires Ruby 2.0.

    require 'dullard' 

    workbook = Dullard::Workbook.new "file.xlsx"
    workbook.sheets[0].rows.each do |row|
      p row # => ["a","b","c", 0.3, #<DateTime: -4712-01-01....>, ...]
    end

## Current limitations
 * Limited validation and error handling.
 * Formatted cells are read, but formatting is not accessible.
 * May be buggy.  Pull requests welcome!
 * Rows that end with empty cells may be truncated.

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dullard-0.2.0 README.md