diff options
| author | Randy Morgan <[email protected]> | 2012-02-12 21:15:12 +0900 |
|---|---|---|
| committer | Randy Morgan <[email protected]> | 2012-02-12 21:15:12 +0900 |
| commit | ee73010db0c473472cde0f0ed12bae9428b6d84e (patch) | |
| tree | 0c44f067f3d4b957a030346a5800107a157d6f60 /README.md | |
| parent | dc9d2b37e4287d4fc650215fba50c7fe3631aee4 (diff) | |
| download | caxlsx-ee73010db0c473472cde0f0ed12bae9428b6d84e.tar.gz caxlsx-ee73010db0c473472cde0f0ed12bae9428b6d84e.zip | |
small optimization and readme update.
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -56,6 +56,10 @@ Feature List **12. Auto filtering tables with worksheet.auto_filter +**13. Export using shared strings or inline string + +**14. Output to disk or StringIO + Installing ---------- @@ -258,6 +262,14 @@ To install Axlsx, use the following command: p.validate.each { |e| puts e.message } p.serialize("example.xlsx") + # alternatively, serilaize to StringIO + s = p.to_stream() + File.open('example_streamed.xlsx', 'w') { |f| f.write(s.read) } + +##Using Shared Strings + + p.use_shared_strings = true + p.serialize("shared_strings_example.xlsx") #Documentation -------------- @@ -272,6 +284,11 @@ This gem has 100% test coverage using test/unit. To execute tests for this gem, #Changelog --------- +- ** February.12.12**: 1.0.17 release + https://github.com/randym/axlsx/compare/1.0.16...1.0.17 + - Added in support for serializing to StringIO + - Added in support for using shared strings table. This makes most of the features in axlsx interoperable with iWorks Numbers + - ** February.2.12**: 1.0.16 release https://github.com/randym/axlsx/compare/1.0.15...1.0.16 - Bug fix for schema file locations when validating in rails |
