summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
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
2012-01-06remove crypto for releaseRandy Morgan
2012-01-06Merge branch 'master' of https://github.com/randym/axlsxRandy Morgan
2012-01-06beginnings of password protected compound binary file using ECMA encryptionRandy Morgan
2011-12-21Merge pull request #9 from ochko/masterRandy Morgan
Another performance improvement - well done ochko
2011-12-22Another performance improvement.ochko
method_missing is being called too much. Instead declared delegate methods for undestructive Array methods
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-16Merge pull request #8 from ochko/masterRandy Morgan
Little performance improvement
2011-12-16Merge branch 'master' of git://github.com/randym/axlsxochko
2011-12-16bump for next releaseRandy Morgan
2011-12-16number format needs to be applied if a format is specified.Randy Morgan
2011-12-16Little performance improvement.ochko
It doesn't need to do type detection if it is passed by options
2011-12-15Added a check for the gemspec/rakefile included VERSION constant so bundler ↵Randy Morgan
does not puke warnings.
2011-12-15silence warning from bundler when requiring this gem off of github.Randy Morgan
2011-12-14readme typeRandy Morgan
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-14adding in accessors for core and app members of package #2Randy Morgan
2011-12-10cleaning up examplesRandy Morgan
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-08updated examples to create all example worksheets in the same workbookRandy Morgan
2011-12-08[bug fix] Sheet names with spaces require quotation when generating rangeRandy Morgan
2011-12-08cleaning up xml namespace usage in drawings and improving looks for charts ↵Randy Morgan
in excel 2011
2011-12-08patch to gem spec to be sure to include testsRandy Morgan
2011-12-08adding in support for merged cellsRandy Morgan
2011-12-08removing unused namespace constants.Randy Morgan
2011-12-08library should require the version constantRandy Morgan
2011-12-08bumping version and readme for update.Randy Morgan
2011-12-08crunched the gemspec and pushed a bunk gem.Randy 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-06Gemfile.lock does not belong in the repoRandy Morgan
2011-12-06attempt to fix recursive rake requireRandy 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-05release prepRandy Morgan
2011-12-05specs for new functionalityRandy 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-05updating start_at, end_at to accept a named cell reference, a cell or x, y ↵Randy Morgan
coordinates
2011-12-05Adding in shorthand color representations and validation so we can use stuff ↵Randy Morgan
like 00 for black, FF for white
2011-12-05adding in style overrides to cell.rbRandy Morgan
2011-12-05adding class method to transform single cell names in to x, y coordinates. ↵Randy Morgan
For example "A1" transliterates to [0, 0] while "C7" transliterates to [2, 6]
2011-12-03update gemspec to require proper rake version so 1.9.2 does not break on DSL ↵Randy Morgan
missing.
2011-12-03make sure travis includes devlopmentRandy Morgan
2011-12-03Testing if travis can pull the requirements from gemspec.Randy Morgan
2011-12-02adding in the picture locking class and testsRandy Morgan