summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRandy Morgan <[email protected]>2012-04-21 09:32:00 +0900
committerRandy Morgan <[email protected]>2012-04-21 09:32:00 +0900
commitab3364b7a88f4054a3b4b8f55263688b7e2bc9d7 (patch)
treef5c0cc6c8fe4447992aef0088abeb7965d9f44fd
parent6a1bb3e599743f20e0fae92bc5a44745f70056e6 (diff)
downloadcaxlsx-ab3364b7a88f4054a3b4b8f55263688b7e2bc9d7.tar.gz
caxlsx-ab3364b7a88f4054a3b4b8f55263688b7e2bc9d7.zip
MOAR credit where credit is due
-rw-r--r--README.md9
1 files changed, 4 insertions, 5 deletions
diff --git a/README.md b/README.md
index 53e3bbb9..cad9a011 100644
--- a/README.md
+++ b/README.md
@@ -443,15 +443,14 @@ p.use_shared_strings = true
p.serialize("shared_strings_example.xlsx")
```
-
##Disabling Autowidth
```ruby
p = Axlsx::Package.new
p.use_autowidth = false
wb = p.workbook
-wb.add_worksheet(:name => "No Magick") do | sheet |
- sheet.add_row ['oh look! no autowidth - and no magick loaded in your process']
+wb.add_worksheet(:name => "Manual Widths") do | sheet |
+ sheet.add_row ['oh look! no autowidth']
end
p.validate.each { |e| puts e.message }
p.serialize("no-use_autowidth.xlsx")
@@ -491,7 +490,7 @@ This gem has 100% test coverage using test/unit. To execute tests for this gem,
- Support for tables added in - Note: Pre 2011 versions of Mac office do not support this feature and will warn.
- Support for splatter charts added
- Major (like 7x faster!) performance updates.
- - Gem now supports for JRuby 1.6.7, as well as expirimental support for Rubinius
+ - Gem now supports for JRuby 1.6.7, as well as experimental support for Rubinius
Please see the {file:CHANGELOG.md} document for past release information.
@@ -515,7 +514,7 @@ Please see the {file:CHANGELOG.md} document for past release information.
[moskrin](https://github.com/moskrin) - for keeping border creation on the edge.
-[scpike](https://github.com/scpike) - for keeping numbers fixed even when they are rational.
+[scpike](https://github.com/scpike) - for keeping numbers fixed even when they are rational and a super clean implementation of conditional formatting.
#Copyright and License
----------