summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2012-04-01Fixed formula handlingJurriaan Pruis
2012-04-01Fixes for 3+ letter columnsJoe Kain
In Axlsx::name_to_indices multiply by the base. In Axlsx::col_ref move the -1 into the loop, it applies to all but the first iteration.
2012-04-01Test 3+ letter column references and indices.Joe Kain
2012-04-01revert mail notice address in travis.yml as google groups is set up to only ↵Randy Morgan
allow members to post.
2012-04-01Add in Rubinius to required envs in travisRandy Morgan
2012-04-01patch travis.ymlRandy Morgan
2012-04-01version bumpRandy Morgan
2012-04-01Merge branch 'master' of github.com:randym/axlsxRandy Morgan
2012-03-31Merge pull request #72 from joekain/perfRandy Morgan
Build self_hash up from INLINE_STYLES
2012-04-01more travis matrix changesRandy Morgan
2012-04-01update travis.yml to require 18mode and 19mode for jrubyRandy Morgan
2012-04-01remove perftools from gemset.Randy Morgan
2012-04-01rebuild all serialization to use string concatenation instead of nokogiri.Randy Morgan
2012-03-31Build self_hash up from INLINE_STYLESJoe Kain
Iterate over each value in INLINE_STYLES instead of iterating over each value in instances_values and rejecting unwanted items. This version proceses fewer values and runs a little faster. Issue #61 - Axlsx performance
2012-04-01part way through changing all serialization to use string concatenation ↵Randy Morgan
prior to dropping Nokogiri dep in production.
2012-03-31post build status to googlegroupRandy Morgan
2012-03-29fix example for border add_styleRandy Morgan
2012-03-28Merge pull request #66 from sduckett/doc-updatesRandy Morgan
Doc updates
2012-03-28Merge pull request #70 from jurriaan/auto_filter-fixRandy Morgan
Auto filter fix
2012-03-29Implement full set of col attributes and improve performance of autowidth ↵Randy Morgan
two fold. ``` user system total real axlsx_noautowidth 0.810000 0.020000 0.830000 ( 0.836274) axlsx 1.430000 0.160000 1.590000 ( 1.776305) axlsx_shared 9.360000 0.160000 9.520000 ( 9.662113) axlsx_stream 1.320000 0.110000 1.430000 ( 1.429806) csv 0.260000 0.020000 0.280000 ( 0.296828)
2012-03-28Updated test cases for Auto Filter fixJurriaan Pruis
2012-03-28Merge github.com:randym/axlsxJurriaan Pruis
2012-03-28implement column object - still needs to be tied in to a rewrite of autofit_dataRandy Morgan
2012-03-28doc fixRandy Morgan
2012-03-28Merge github.com:randym/axlsxJurriaan Pruis
2012-03-28use consisten name for benchmark xlsx filesochko
2012-03-28ignore example.csvochko
2012-03-27bug fixed, so useless.Sean Duckett
2012-03-27Fix no-example in rendered docs, comment to match method.Sean Duckett
2012-03-27Merge branch 'master' of https://github.com/randym/axlsxSean Duckett
2012-03-28Still not fast enough?Randy Morgan
``` user system total real axlsx_noautowidth 0.760000 0.020000 0.780000 ( 0.885482) axlsx 3.560000 0.130000 3.690000 ( 4.158594) axlsx_shared 11.610000 0.180000 11.790000 ( 13.208945) axlsx_stream 3.450000 0.120000 3.570000 ( 3.920745) csv 0.240000 0.010000 0.250000 ( 0.269822)
2012-03-27Merge github.com:randym/axlsxJurriaan Pruis
2012-03-27use << for row string processing as well.Randy Morgan
2012-03-27FAST ENOUGH?Randy Morgan
user system total real axlsx_noautowidth 1.560000 0.030000 1.590000 ( 1.717595) axlsx 4.360000 0.140000 4.500000 ( 5.748329) axlsx_shared 6.880000 0.160000 7.040000 ( 9.325648) axlsx_stream 4.320000 0.120000 4.440000 ( 5.642124) csv 0.240000 0.010000 0.250000 ( 0.301004)
2012-03-27benchmarking shows << to be faster than "%s" % xRandy Morgan
2012-03-27properly render inline colorsRandy Morgan
2012-03-27value and type required for shared_string comparison. this should be extracted.Randy Morgan
2012-03-27Some small improvementsRandy Morgan
total real axlsx_noautowidth 1.650000 ( 1.684738) axlsx 4.470000 ( 4.580439) axlsx_shared 7.990000 ( 8.151813) axlsx_stream 4.420000 ( 4.435809) csv 0.250000 ( 0.259114)
2012-03-26fix specs for cell when serializing to string as hashes are not ordered!Randy Morgan
2012-03-26adjust specs to 0 based index references for worksheet[0] as first row.Randy Morgan
2012-03-26indexes should be 0 based, and the <worksheet> node needed to be closedRandy Morgan
2012-03-26need to make columns - even if we are not using auto_widthRandy Morgan
2012-03-26Merge pull request #64 from ochko/go-fasterRandy Morgan
Go faster
2012-03-26use Array#join instead of concatenatingochko
(got 1 sec speed improvement for 1000 cells)
2012-03-26do nothing unless it is told to autowith fittingochko
2012-03-26add perftools.rbochko
2012-03-26Quick and Dirty run on trying interpolated strings instead of nokogiri for ↵Randy Morgan
sheet generation.
2012-03-25include scatter plot exampleRandy Morgan
2012-03-25Merge pull request #62 from joekain/scatter-cleanRandy Morgan
Add Scatter Chart example.
2012-03-23Add Scatter Chart example.Joe Kain