summaryrefslogtreecommitdiffhomepage
path: root/lib/axlsx/workbook
AgeCommit message (Collapse)Author
2012-02-14changing column_widths to accept *args instead of a declared array.Randy Morgan
2012-02-13Improve accessibility and stringency for column_widths editing.Randy Morgan
2012-02-13adding in support for specified column widthsRandy Morgan
2012-02-12small optimization and readme update.Randy Morgan
2012-02-12refactor inline style attribute listing and xml generation so that both ↵Randy Morgan
shared strings and inline strings can use cell level inline styles against text runs
2012-02-12reject formula from shared strings candidatesRandy Morgan
2012-02-12patches for 1.8.7Randy Morgan
2012-02-12patching unbalanced endsRandy Morgan
2012-02-12Adding in support for optionally using the shared strings table. This will ↵Randy Morgan
allow us to inter-op properly with Numbers
2012-02-01Updating schema loading for validation to correctly load the schema file ↵Randy Morgan
relative to the package as reported by Phong in #21. https://github.com/randym/axlsx/issues/21
2012-01-19date1904 needs to be true on mac and bsd at leastochko
2012-01-19Set default date1904 attribute using platform stringochko
2012-01-18remove linebreaks/indentation when saving to encourage interop with rubyXLRandy Morgan
https://github.com/randym/axlsx/issues/19
2012-01-13applying col_style to a list of rows of unequal length can cause an error as ↵Randy Morgan
there is no cell at the index. for example, with a structure like this: ******** ** ******** *** col_style 2, 1 would fail as the second row has no cell at index 2. Thanks Don! https://github.com/randym/axlsx/issues/15
2011-12-20removing debug codeRandy Morgan
2011-12-20patch: If the type is specified before the value is set we try to cast nil, ↵Randy Morgan
and force the type to be nil. We should only cast the value when type is being set against an established value attribute.
2011-12-16Little performance improvement.ochko
It doesn't need to do type detection if it is passed by options
2011-12-14release prep for 1.0.14.Randy Morgan
2011-12-141.0.14 release prep. Beginnings of password protection scheduled for release ↵Randy Morgan
in Jan. 2012
2011-12-10adding support for auto filters and some improvements to auto_width cell ↵Randy Morgan
calculations.
2011-12-10changing time value storage to retain the value as a Time object until ↵Randy Morgan
serialization.
2011-12-08adding in support for merged cellsRandy Morgan
2011-12-07patch for issue #1Randy Morgan
force binary encoding for zip entries. [bug] fixed error in app.rb so extended properties can now be used. improved support for OOXML cell element types.
2011-12-06adding inlineString type to rich formatted cells.Randy Morgan
2011-12-06Formatting float values for column width and date values in an attempt to ↵Randy Morgan
resolve https://github.com/randym/axlsx/issues/1
2011-12-05updating docs and examplesRandy Morgan
2011-12-05adding [] method for named based access and including cell font size ↵Randy Morgan
overrides into the autowidth calculations
2011-12-05ensure that worksheet names are unique in the workbookRandy Morgan
2011-12-05adding in style overrides to cell.rbRandy Morgan
2011-12-02Added locking attributes for pictures and some stubs for parsingRandy Morgan
2011-12-01added default formatting for date types when the cell style is 0 and the ↵Randy Morgan
data type is :time
2011-11-30Hardcoding time offset from 1970 as using time for dates this far in the ↵Randy Morgan
past will break on some systems. Adding in travis build status
2011-11-30patch excel time calculationsRandy Morgan
2011-11-30From the docs on time "On some operating systems, this offset is allowed to ↵Randy Morgan
be negative." perhaps travis is one of those systems that does not allow negative offsets. Using the integer value for 1900 and 1904 epocs
2011-11-30Output time in rake test to see what time travis thinks it is.Randy Morgan
2011-11-29fiddle #19 time creation with travis Randy Morgan
2011-11-29ruby 1.8.7 on linux does *not* like my time. Trying crazy stuff.Randy Morgan
2011-11-29always read the manual! Month is a string in the example on 1.8.7Randy Morgan
2011-11-29travis fun with timesRandy Morgan
2011-11-29Travis still does not like my Time.local(1900,1,1,0,0,0,0) format. Dropping ↵Randy Morgan
down to year, month and day only.
2011-11-29trying to fix 'out of range' for time creation on travisRandy Morgan
2011-11-29patch for 1.8.3 lack of to_time support on TimeRandy Morgan
2011-11-29prepping for 1.0.10 release and travis integrationRandy Morgan
2011-11-27more documentation for 10a releaseRandy Morgan
2011-11-27adding yields for package workbook, workbook styles and cols collection on ↵Randy Morgan
worksheet to make charting easier.
2011-11-27adding in row_style and col_style methods to worksheet and active record ↵Randy Morgan
'acts_as_axlsx' to provide to_xlsx.
2011-11-26adding in support for ruby 1.9.3Randy Morgan
release version 1.0.9
2011-11-23fixing some typosRandy Morgan
2011-11-23Adding image support and some document clean up for .8 releaseRandy Morgan
2011-11-23-refactoring chart position and axis data/category for chart.Randy Morgan
-additional specs and documentation improvements.