summaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorRandy Morgan <[email protected]>2012-02-12 21:15:12 +0900
committerRandy Morgan <[email protected]>2012-02-12 21:15:12 +0900
commitee73010db0c473472cde0f0ed12bae9428b6d84e (patch)
tree0c44f067f3d4b957a030346a5800107a157d6f60 /README.md
parentdc9d2b37e4287d4fc650215fba50c7fe3631aee4 (diff)
downloadcaxlsx-ee73010db0c473472cde0f0ed12bae9428b6d84e.tar.gz
caxlsx-ee73010db0c473472cde0f0ed12bae9428b6d84e.zip
small optimization and readme update.
Diffstat (limited to 'README.md')
-rw-r--r--README.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/README.md b/README.md
index 2ad0144e..ede72eeb 100644
--- a/README.md
+++ b/README.md
@@ -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