creek icon indicating copy to clipboard operation
creek copied to clipboard

Ruby library for parsing large Excel files.

Results 13 creek issues
Sort by recently updated
recently updated
newest added

I propose to make the converter this way: ```Ruby class Converter BUILD_IN_CONVERTERS = [ # build-in converters from this https://github.com/pythonicrubyist/creek/blob/master/lib/creek/styles/converter.rb#L41 ] def initialize(custom_converters: []) @_converters = custom_converters + BUILD_IN_CONVERTERS end...

Previously mentioned in https://github.com/pythonicrubyist/creek/issues/89 Although Creek is not intended to do any calculations or handling of formulas in cells, it is unfortunately corrupting the data in that type of cell...

I have xlsx file that has a date column. The underlying value is a float (has a time component). I want to get the raw value of the cell to...