If you create an excel spreadsheet (xls) from the following csv:
date,name,
Sun Dec 31 13:59:59 CET 2006,Boogie
Then load it with jruby-poi, and access the cell with the date, you will get a Date with "2006-12-31"
The problematic code is here:
https://github.com/kameeoze/jruby-poi/blob/master/lib/poi/workbook/cell.rb#L168
Changing Date.parse to Time.parse seems like a safe bet.
If you create an excel spreadsheet (xls) from the following csv:
Then load it with jruby-poi, and access the cell with the date, you will get a Date with "2006-12-31"
The problematic code is here:
https://github.com/kameeoze/jruby-poi/blob/master/lib/poi/workbook/cell.rb#L168
Changing Date.parse to Time.parse seems like a safe bet.