From b279f1f07cb654637d3d9924968e5acdb88d3f36 Mon Sep 17 00:00:00 2001 From: Randy Morgan Date: Tue, 22 Nov 2011 00:09:56 +0900 Subject: Doc updates and next release. --- .yardoc/checksums | 2 +- .yardoc/objects/root.dat | Bin 425443 -> 425443 bytes README.md | 25 +++++++++++++++++++------ axlsx-1.0.5.gem | Bin 0 -> 200704 bytes doc/Axlsx.html | 4 ++-- doc/Axlsx/App.html | 2 +- doc/Axlsx/Axis.html | 2 +- doc/Axlsx/Bar3DChart.html | 2 +- doc/Axlsx/BarSeries.html | 2 +- doc/Axlsx/Border.html | 2 +- doc/Axlsx/BorderPr.html | 2 +- doc/Axlsx/CatAxis.html | 2 +- doc/Axlsx/Cell.html | 2 +- doc/Axlsx/CellAlignment.html | 2 +- doc/Axlsx/CellProtection.html | 2 +- doc/Axlsx/CellStyle.html | 2 +- doc/Axlsx/Chart.html | 2 +- doc/Axlsx/Color.html | 2 +- doc/Axlsx/ContentType.html | 2 +- doc/Axlsx/Core.html | 2 +- doc/Axlsx/DataTypeValidator.html | 2 +- doc/Axlsx/Default.html | 2 +- doc/Axlsx/Drawing.html | 2 +- doc/Axlsx/Fill.html | 2 +- doc/Axlsx/Font.html | 2 +- doc/Axlsx/GradientFill.html | 2 +- doc/Axlsx/GradientStop.html | 2 +- doc/Axlsx/GraphicFrame.html | 2 +- doc/Axlsx/Line3DChart.html | 2 +- doc/Axlsx/LineSeries.html | 2 +- doc/Axlsx/Marker.html | 2 +- doc/Axlsx/NumFmt.html | 2 +- doc/Axlsx/Override.html | 2 +- doc/Axlsx/Package.html | 2 +- doc/Axlsx/PatternFill.html | 2 +- doc/Axlsx/Pie3DChart.html | 2 +- doc/Axlsx/PieSeries.html | 2 +- doc/Axlsx/RegexValidator.html | 2 +- doc/Axlsx/Relationship.html | 2 +- doc/Axlsx/Relationships.html | 2 +- doc/Axlsx/RestrictionValidator.html | 2 +- doc/Axlsx/Row.html | 2 +- doc/Axlsx/Scaling.html | 2 +- doc/Axlsx/SerAxis.html | 2 +- doc/Axlsx/Series.html | 2 +- doc/Axlsx/SeriesTitle.html | 2 +- doc/Axlsx/SimpleTypedList.html | 2 +- doc/Axlsx/Styles.html | 2 +- doc/Axlsx/TableStyle.html | 2 +- doc/Axlsx/TableStyleElement.html | 2 +- doc/Axlsx/TableStyles.html | 2 +- doc/Axlsx/Title.html | 2 +- doc/Axlsx/TwoCellAnchor.html | 2 +- doc/Axlsx/ValAxis.html | 2 +- doc/Axlsx/View3D.html | 2 +- doc/Axlsx/Workbook.html | 2 +- doc/Axlsx/Worksheet.html | 2 +- doc/Axlsx/Xf.html | 2 +- doc/_index.html | 2 +- doc/file.README.html | 30 +++++++++++++++++++++--------- doc/index.html | 30 +++++++++++++++++++++--------- doc/top-level-namespace.html | 2 +- 62 files changed, 119 insertions(+), 82 deletions(-) create mode 100644 axlsx-1.0.5.gem diff --git a/.yardoc/checksums b/.yardoc/checksums index 11790402..70f8c585 100644 --- a/.yardoc/checksums +++ b/.yardoc/checksums @@ -4,7 +4,7 @@ lib/axlsx/drawing/pie_3D_chart.rb dd669c8dc9ef1f762d45a9589260c8c17308d944 lib/axlsx/stylesheet/border_pr.rb 09dcb61ec7b0cf49f2da4c4f8ccba8f7e0df7b07 lib/axlsx/stylesheet/color.rb 4927aaebe27dda42d78bb7baf9a44edc1753c77f lib/axlsx/drawing/marker.rb 3507738522c02a3733a01f115d9ef22fae4ea542 -lib/axlsx/util/constants.rb ebb670bf42bffc225281bcec13e654118603c698 +lib/axlsx/util/constants.rb 7c150ada1be46d42456f1d4c57072e8327cc4dd7 lib/axlsx/stylesheet/cell_protection.rb ce494f9add6de0a51407ddd9122fffe95759a48a lib/axlsx/stylesheet/cell_style.rb 46c6ff183bce5c6b1ab6228823257d638007b03c lib/axlsx/drawing/series_title.rb 7ace4ba7c7835db5a7c69d2319cd59ed8c45908a diff --git a/.yardoc/objects/root.dat b/.yardoc/objects/root.dat index 24d12b6c..2e33673d 100644 Binary files a/.yardoc/objects/root.dat and b/.yardoc/objects/root.dat differ diff --git a/README.md b/README.md index 6d1ffd1e..55df98e1 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,9 @@ Axlsx: Office Open XML Spreadsheet Generation **Author**: Randy Morgan **Copyright**: 2011 **License**: MIT License -**Latest Version**: 1.0.4 -**Release Date**: November 21st 2011 +**Latest Version**: 1.0.5 +**Ruby Version**: 1.8.7 +**Release Date**: November 22nd 2011 Synopsis -------- @@ -59,7 +60,7 @@ Usage p.workbook.add_worksheet do |sheet| sheet.add_row ["First", "Second", "Third"] sheet.add_row [1, 2, 3] - sheet.add_chart(Axlsx::Bar3DChart, :start_at => [0,2], :end_at => [5, 15], :title=>"example 1: Chart") do |chart| + sheet.add_chart(Axlsx::Bar3DChart, :start_at => [0,2], :end_at => [5, 15], :title=>"example 2: Chart") do |chart| chart.add_series :data=>sheet.rows.last.cells, :labels=> sheet.rows.first.cells end end @@ -71,7 +72,7 @@ Usage p.workbook.add_worksheet do |sheet| sheet.add_row ["First", "Second", "Third"] sheet.add_row [1, 2, 3] - sheet.add_chart(Axlsx::Pie3DChart, :start_at => [0,2], :end_at => [5, 15], :title=>"example 2: Pie Chart") do |chart| + sheet.add_chart(Axlsx::Pie3DChart, :start_at => [0,2], :end_at => [5, 15], :title=>"example 3: Pie Chart") do |chart| chart.add_series :data=>sheet.rows.last.cells, :labels=> sheet.rows.first.cells end end @@ -136,7 +137,7 @@ This gem is 100% documented with YARD, an exceptional documentation library. To ### Specs -This gem has 100% test coverage. To execute tests for this gem, simply run rake in the gem directory. +This gem has 100% test coverage using test/unit. To execute tests for this gem, simply run rake in the gem directory. Changelog --------- @@ -148,9 +149,21 @@ Changelog - altered package to accept a filename string for serialization instead of a File object. - Updated specs to conform - More examples for readme -- **October.21.11**: 1.05 +- **October.22.11**: 1.05 - Added support for line charts - Updated examples and readme + - Updated series title to be a real title ** NOTE ** If you are accessing titles directly you will need to update text assignation to title.text = v + - BugFix: shape attribute for bar chart is now properly serialized + - BugFix: date1904 property now properly set for charts + - Added style property to charts + - Removed serialization write test as it most commonly fails when run from the gem's intalled directory + +On Deck +------- + +- Verification with ruby 1.9.3 +- Active Record support via package::serialize_ar so you can dump an AR result into a worksheet in one go. + Copyright --------- diff --git a/axlsx-1.0.5.gem b/axlsx-1.0.5.gem new file mode 100644 index 00000000..1db05c54 Binary files /dev/null and b/axlsx-1.0.5.gem differ diff --git a/doc/Axlsx.html b/doc/Axlsx.html index eba574fe..6df8abdc 100644 --- a/doc/Axlsx.html +++ b/doc/Axlsx.html @@ -122,7 +122,7 @@ version -
"1.0.4"
+        
"1.0.5"
 
ENCODING = @@ -2434,7 +2434,7 @@ The value validated diff --git a/doc/Axlsx/App.html b/doc/Axlsx/App.html index cabd1e88..2e7b355d 100644 --- a/doc/Axlsx/App.html +++ b/doc/Axlsx/App.html @@ -2631,7 +2631,7 @@ The document as a string diff --git a/doc/Axlsx/Axis.html b/doc/Axlsx/Axis.html index 980939ef..9d7bf92f 100644 --- a/doc/Axlsx/Axis.html +++ b/doc/Axlsx/Axis.html @@ -1038,7 +1038,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/Axlsx/Bar3DChart.html b/doc/Axlsx/Bar3DChart.html index 82b4f37b..5a40acf3 100644 --- a/doc/Axlsx/Bar3DChart.html +++ b/doc/Axlsx/Bar3DChart.html @@ -1144,7 +1144,7 @@ Serializes the bar chart diff --git a/doc/Axlsx/BarSeries.html b/doc/Axlsx/BarSeries.html index 02884b20..8f75b9f0 100644 --- a/doc/Axlsx/BarSeries.html +++ b/doc/Axlsx/BarSeries.html @@ -755,7 +755,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/Axlsx/Border.html b/doc/Axlsx/Border.html index e52f64e7..9a3d25f2 100644 --- a/doc/Axlsx/Border.html +++ b/doc/Axlsx/Border.html @@ -766,7 +766,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/Axlsx/BorderPr.html b/doc/Axlsx/BorderPr.html index 4a8fe417..e2f4009e 100644 --- a/doc/Axlsx/BorderPr.html +++ b/doc/Axlsx/BorderPr.html @@ -700,7 +700,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/Axlsx/CatAxis.html b/doc/Axlsx/CatAxis.html index 7c2ccee8..1fb09fb2 100644 --- a/doc/Axlsx/CatAxis.html +++ b/doc/Axlsx/CatAxis.html @@ -757,7 +757,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/Axlsx/Cell.html b/doc/Axlsx/Cell.html index 163b909a..2feb3cc9 100644 --- a/doc/Axlsx/Cell.html +++ b/doc/Axlsx/Cell.html @@ -1614,7 +1614,7 @@ xml text for the cell diff --git a/doc/Axlsx/CellAlignment.html b/doc/Axlsx/CellAlignment.html index 9b5fcf4e..eaeaf099 100644 --- a/doc/Axlsx/CellAlignment.html +++ b/doc/Axlsx/CellAlignment.html @@ -1238,7 +1238,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/Axlsx/CellProtection.html b/doc/Axlsx/CellProtection.html index 65fcf78f..ee0df884 100644 --- a/doc/Axlsx/CellProtection.html +++ b/doc/Axlsx/CellProtection.html @@ -556,7 +556,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/Axlsx/CellStyle.html b/doc/Axlsx/CellStyle.html index 7bcc7bfa..d4d3c7e5 100644 --- a/doc/Axlsx/CellStyle.html +++ b/doc/Axlsx/CellStyle.html @@ -940,7 +940,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/Axlsx/Chart.html b/doc/Axlsx/Chart.html index af6c0596..dfe6f77b 100644 --- a/doc/Axlsx/Chart.html +++ b/doc/Axlsx/Chart.html @@ -1450,7 +1450,7 @@ Chart Serialization serializes the chart diff --git a/doc/Axlsx/Color.html b/doc/Axlsx/Color.html index 5cfc7ac6..cdd45cdd 100644 --- a/doc/Axlsx/Color.html +++ b/doc/Axlsx/Color.html @@ -656,7 +656,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/Axlsx/ContentType.html b/doc/Axlsx/ContentType.html index a60a275b..eafc8405 100644 --- a/doc/Axlsx/ContentType.html +++ b/doc/Axlsx/ContentType.html @@ -331,7 +331,7 @@ The document as a string. diff --git a/doc/Axlsx/Core.html b/doc/Axlsx/Core.html index 19f5431b..aa7d5dda 100644 --- a/doc/Axlsx/Core.html +++ b/doc/Axlsx/Core.html @@ -456,7 +456,7 @@ time when this method is called. diff --git a/doc/Axlsx/DataTypeValidator.html b/doc/Axlsx/DataTypeValidator.html index 15afbfc9..2f9258aa 100644 --- a/doc/Axlsx/DataTypeValidator.html +++ b/doc/Axlsx/DataTypeValidator.html @@ -315,7 +315,7 @@ types or the block passed returns false diff --git a/doc/Axlsx/Default.html b/doc/Axlsx/Default.html index 9c005b15..6ab56ad0 100644 --- a/doc/Axlsx/Default.html +++ b/doc/Axlsx/Default.html @@ -566,7 +566,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/Axlsx/Drawing.html b/doc/Axlsx/Drawing.html index fffef370..e04ca86b 100644 --- a/doc/Axlsx/Drawing.html +++ b/doc/Axlsx/Drawing.html @@ -1145,7 +1145,7 @@ Serializes the drawing diff --git a/doc/Axlsx/Fill.html b/doc/Axlsx/Fill.html index c2a1d64c..4c9629e2 100644 --- a/doc/Axlsx/Fill.html +++ b/doc/Axlsx/Fill.html @@ -451,7 +451,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/Axlsx/Font.html b/doc/Axlsx/Font.html index ada7b676..6c980480 100644 --- a/doc/Axlsx/Font.html +++ b/doc/Axlsx/Font.html @@ -1545,7 +1545,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/Axlsx/GradientFill.html b/doc/Axlsx/GradientFill.html index 3c37b50c..37789e1c 100644 --- a/doc/Axlsx/GradientFill.html +++ b/doc/Axlsx/GradientFill.html @@ -1017,7 +1017,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/Axlsx/GradientStop.html b/doc/Axlsx/GradientStop.html index f5f8ece1..0fbf939e 100644 --- a/doc/Axlsx/GradientStop.html +++ b/doc/Axlsx/GradientStop.html @@ -517,7 +517,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/Axlsx/GraphicFrame.html b/doc/Axlsx/GraphicFrame.html index ce46db59..bab131b6 100644 --- a/doc/Axlsx/GraphicFrame.html +++ b/doc/Axlsx/GraphicFrame.html @@ -637,7 +637,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/Axlsx/Line3DChart.html b/doc/Axlsx/Line3DChart.html index edb59aba..b00b6ac2 100644 --- a/doc/Axlsx/Line3DChart.html +++ b/doc/Axlsx/Line3DChart.html @@ -912,7 +912,7 @@ Serializes the bar chart diff --git a/doc/Axlsx/LineSeries.html b/doc/Axlsx/LineSeries.html index 4e9b1b45..cf44246f 100644 --- a/doc/Axlsx/LineSeries.html +++ b/doc/Axlsx/LineSeries.html @@ -647,7 +647,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/Axlsx/Marker.html b/doc/Axlsx/Marker.html index 68315516..0d144dfb 100644 --- a/doc/Axlsx/Marker.html +++ b/doc/Axlsx/Marker.html @@ -848,7 +848,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/Axlsx/NumFmt.html b/doc/Axlsx/NumFmt.html index 0a4b42f2..0961a0d4 100644 --- a/doc/Axlsx/NumFmt.html +++ b/doc/Axlsx/NumFmt.html @@ -553,7 +553,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/Axlsx/Override.html b/doc/Axlsx/Override.html index a1935495..96f62a7d 100644 --- a/doc/Axlsx/Override.html +++ b/doc/Axlsx/Override.html @@ -559,7 +559,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/Axlsx/Package.html b/doc/Axlsx/Package.html index 87bd8c22..5a388244 100644 --- a/doc/Axlsx/Package.html +++ b/doc/Axlsx/Package.html @@ -1284,7 +1284,7 @@ An array of all validation errors encountered. diff --git a/doc/Axlsx/PatternFill.html b/doc/Axlsx/PatternFill.html index 6772f0c7..f80a69e2 100644 --- a/doc/Axlsx/PatternFill.html +++ b/doc/Axlsx/PatternFill.html @@ -672,7 +672,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/Axlsx/Pie3DChart.html b/doc/Axlsx/Pie3DChart.html index ef2ab02c..082215fe 100644 --- a/doc/Axlsx/Pie3DChart.html +++ b/doc/Axlsx/Pie3DChart.html @@ -430,7 +430,7 @@ Serializes the pie chart diff --git a/doc/Axlsx/PieSeries.html b/doc/Axlsx/PieSeries.html index 75789976..ce70ebeb 100644 --- a/doc/Axlsx/PieSeries.html +++ b/doc/Axlsx/PieSeries.html @@ -753,7 +753,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/Axlsx/RegexValidator.html b/doc/Axlsx/RegexValidator.html index b1d029a6..69f856ff 100644 --- a/doc/Axlsx/RegexValidator.html +++ b/doc/Axlsx/RegexValidator.html @@ -259,7 +259,7 @@ The value to validate. diff --git a/doc/Axlsx/Relationship.html b/doc/Axlsx/Relationship.html index 52eef338..1c806e67 100644 --- a/doc/Axlsx/Relationship.html +++ b/doc/Axlsx/Relationship.html @@ -545,7 +545,7 @@ the reference id of the object. diff --git a/doc/Axlsx/Relationships.html b/doc/Axlsx/Relationships.html index e98e2e3c..5bd556ed 100644 --- a/doc/Axlsx/Relationships.html +++ b/doc/Axlsx/Relationships.html @@ -334,7 +334,7 @@ Serializes the relationships document. diff --git a/doc/Axlsx/RestrictionValidator.html b/doc/Axlsx/RestrictionValidator.html index 1935862d..428cb97b 100644 --- a/doc/Axlsx/RestrictionValidator.html +++ b/doc/Axlsx/RestrictionValidator.html @@ -291,7 +291,7 @@ Raised if the value provided is not in the list of choices. diff --git a/doc/Axlsx/Row.html b/doc/Axlsx/Row.html index c840fd06..942a94ec 100644 --- a/doc/Axlsx/Row.html +++ b/doc/Axlsx/Row.html @@ -762,7 +762,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/Axlsx/Scaling.html b/doc/Axlsx/Scaling.html index 4d201069..2080f865 100644 --- a/doc/Axlsx/Scaling.html +++ b/doc/Axlsx/Scaling.html @@ -731,7 +731,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/Axlsx/SerAxis.html b/doc/Axlsx/SerAxis.html index 9158627a..1559343e 100644 --- a/doc/Axlsx/SerAxis.html +++ b/doc/Axlsx/SerAxis.html @@ -615,7 +615,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/Axlsx/Series.html b/doc/Axlsx/Series.html index 2c488521..b72058fe 100644 --- a/doc/Axlsx/Series.html +++ b/doc/Axlsx/Series.html @@ -737,7 +737,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/Axlsx/SeriesTitle.html b/doc/Axlsx/SeriesTitle.html index 7be16adf..4b279cdb 100644 --- a/doc/Axlsx/SeriesTitle.html +++ b/doc/Axlsx/SeriesTitle.html @@ -280,7 +280,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/Axlsx/SimpleTypedList.html b/doc/Axlsx/SimpleTypedList.html index 70e588f5..b61d6193 100644 --- a/doc/Axlsx/SimpleTypedList.html +++ b/doc/Axlsx/SimpleTypedList.html @@ -1608,7 +1608,7 @@ Unlock the list diff --git a/doc/Axlsx/Styles.html b/doc/Axlsx/Styles.html index a91a665c..c9266f33 100644 --- a/doc/Axlsx/Styles.html +++ b/doc/Axlsx/Styles.html @@ -1745,7 +1745,7 @@ Serializes the styles document diff --git a/doc/Axlsx/TableStyle.html b/doc/Axlsx/TableStyle.html index f78aec2c..8c076e6d 100644 --- a/doc/Axlsx/TableStyle.html +++ b/doc/Axlsx/TableStyle.html @@ -701,7 +701,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/Axlsx/TableStyleElement.html b/doc/Axlsx/TableStyleElement.html index 618bcdaf..d2e5dbd1 100644 --- a/doc/Axlsx/TableStyleElement.html +++ b/doc/Axlsx/TableStyleElement.html @@ -668,7 +668,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/Axlsx/TableStyles.html b/doc/Axlsx/TableStyles.html index 6967532e..de9bdc38 100644 --- a/doc/Axlsx/TableStyles.html +++ b/doc/Axlsx/TableStyles.html @@ -590,7 +590,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/Axlsx/Title.html b/doc/Axlsx/Title.html index 625f1dc6..25e7d42e 100644 --- a/doc/Axlsx/Title.html +++ b/doc/Axlsx/Title.html @@ -616,7 +616,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/Axlsx/TwoCellAnchor.html b/doc/Axlsx/TwoCellAnchor.html index 0f235871..57df3220 100644 --- a/doc/Axlsx/TwoCellAnchor.html +++ b/doc/Axlsx/TwoCellAnchor.html @@ -1106,7 +1106,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/Axlsx/ValAxis.html b/doc/Axlsx/ValAxis.html index c7e968b6..66282527 100644 --- a/doc/Axlsx/ValAxis.html +++ b/doc/Axlsx/ValAxis.html @@ -530,7 +530,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/Axlsx/View3D.html b/doc/Axlsx/View3D.html index 39dee6f8..2a258c56 100644 --- a/doc/Axlsx/View3D.html +++ b/doc/Axlsx/View3D.html @@ -962,7 +962,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/Axlsx/Workbook.html b/doc/Axlsx/Workbook.html index de654131..02f76053 100644 --- a/doc/Axlsx/Workbook.html +++ b/doc/Axlsx/Workbook.html @@ -1338,7 +1338,7 @@ Serializes the workbook document diff --git a/doc/Axlsx/Worksheet.html b/doc/Axlsx/Worksheet.html index e00f3633..5cceba35 100644 --- a/doc/Axlsx/Worksheet.html +++ b/doc/Axlsx/Worksheet.html @@ -1855,7 +1855,7 @@ of Cell objects diff --git a/doc/Axlsx/Xf.html b/doc/Axlsx/Xf.html index 67fd183b..14657823 100644 --- a/doc/Axlsx/Xf.html +++ b/doc/Axlsx/Xf.html @@ -1672,7 +1672,7 @@ The document builder instance this objects xml will be added to. diff --git a/doc/_index.html b/doc/_index.html index 787429f1..21cdc9f6 100644 --- a/doc/_index.html +++ b/doc/_index.html @@ -602,7 +602,7 @@ diff --git a/doc/file.README.html b/doc/file.README.html index 56188a47..364ee7c2 100644 --- a/doc/file.README.html +++ b/doc/file.README.html @@ -62,7 +62,8 @@ Copyright: 2011
License: MIT License
Latest Version: 1.0.5 -Release Date: November 21st 2011

+Ruby Version: 1.8.7 +Release Date: November 22nd 2011

Synopsis

@@ -112,7 +113,7 @@ It enables the you to generate 100% valid xlsx files that include customised sty p.workbook.add_worksheet do |sheet| sheet.add_row ["First", "Second", "Third"] sheet.add_row [1, 2, 3] - sheet.add_chart(Axlsx::Bar3DChart, :start_at => [0,2], :end_at => [5, 15], :title=>"example 1: Chart") do |chart| + sheet.add_chart(Axlsx::Bar3DChart, :start_at => [0,2], :end_at => [5, 15], :title=>"example 2: Chart") do |chart| chart.add_series :data=>sheet.rows.last.cells, :labels=> sheet.rows.first.cells end end @@ -125,7 +126,7 @@ It enables the you to generate 100% valid xlsx files that include customised sty p.workbook.add_worksheet do |sheet| sheet.add_row ["First", "Second", "Third"] sheet.add_row [1, 2, 3] - sheet.add_chart(Axlsx::Pie3DChart, :start_at => [0,2], :end_at => [5, 15], :title=>"example 2: Pie Chart") do |chart| + sheet.add_chart(Axlsx::Pie3DChart, :start_at => [0,2], :end_at => [5, 15], :title=>"example 3: Pie Chart") do |chart| chart.add_series :data=>sheet.rows.last.cells, :labels=> sheet.rows.first.cells end end @@ -195,7 +196,7 @@ It enables the you to generate 100% valid xlsx files that include customised sty

Specs

-

This gem has 100% test coverage. To execute tests for this gem, simply run rake in the gem directory.

+

This gem has 100% test coverage using test/unit. To execute tests for this gem, simply run rake in the gem directory.

Changelog

@@ -215,26 +216,37 @@ It enables the you to generate 100% valid xlsx files that include customised sty
  • More examples for readme
  • -
  • October.21.11: 1.05 +
  • October.22.11: 1.05
    • Added support for line charts
    • Updated examples and readme
    • -
    • Updated series title to be a real title -Copyright
    • +
    • Updated series title to be a real title NOTE If you are accessing titles directly you will need to update text assignation to title.text = v
    • +
    • BugFix: shape attribute for bar chart is now properly serialized
    • +
    • BugFix: date1904 property now properly set for charts
    • +
    • Added style property to charts
    • +
    • Removed serialization write test as it most commonly fails when run from the gem's intalled directory
  • -
    +

    On Deck

    + +
      +
    • Verification with ruby 1.9.3
    • +
    • Active Record support via package::serialize_ar so you can dump an AR result into a worksheet in one go.
    • +
    + + +

    Copyright

    Axlsx © 2011 by Randy Morgan. Axlsx is licensed under the MIT license. Please see the LICENSE document for more information.

    diff --git a/doc/index.html b/doc/index.html index 56188a47..364ee7c2 100644 --- a/doc/index.html +++ b/doc/index.html @@ -62,7 +62,8 @@ Copyright: 2011
    License: MIT License
    Latest Version: 1.0.5 -Release Date: November 21st 2011

    +Ruby Version: 1.8.7 +Release Date: November 22nd 2011

    Synopsis

    @@ -112,7 +113,7 @@ It enables the you to generate 100% valid xlsx files that include customised sty p.workbook.add_worksheet do |sheet| sheet.add_row ["First", "Second", "Third"] sheet.add_row [1, 2, 3] - sheet.add_chart(Axlsx::Bar3DChart, :start_at => [0,2], :end_at => [5, 15], :title=>"example 1: Chart") do |chart| + sheet.add_chart(Axlsx::Bar3DChart, :start_at => [0,2], :end_at => [5, 15], :title=>"example 2: Chart") do |chart| chart.add_series :data=>sheet.rows.last.cells, :labels=> sheet.rows.first.cells end end @@ -125,7 +126,7 @@ It enables the you to generate 100% valid xlsx files that include customised sty p.workbook.add_worksheet do |sheet| sheet.add_row ["First", "Second", "Third"] sheet.add_row [1, 2, 3] - sheet.add_chart(Axlsx::Pie3DChart, :start_at => [0,2], :end_at => [5, 15], :title=>"example 2: Pie Chart") do |chart| + sheet.add_chart(Axlsx::Pie3DChart, :start_at => [0,2], :end_at => [5, 15], :title=>"example 3: Pie Chart") do |chart| chart.add_series :data=>sheet.rows.last.cells, :labels=> sheet.rows.first.cells end end @@ -195,7 +196,7 @@ It enables the you to generate 100% valid xlsx files that include customised sty

    Specs

    -

    This gem has 100% test coverage. To execute tests for this gem, simply run rake in the gem directory.

    +

    This gem has 100% test coverage using test/unit. To execute tests for this gem, simply run rake in the gem directory.

    Changelog

    @@ -215,26 +216,37 @@ It enables the you to generate 100% valid xlsx files that include customised sty
  • More examples for readme
  • -
  • October.21.11: 1.05 +
  • October.22.11: 1.05
    • Added support for line charts
    • Updated examples and readme
    • -
    • Updated series title to be a real title -Copyright
    • +
    • Updated series title to be a real title NOTE If you are accessing titles directly you will need to update text assignation to title.text = v
    • +
    • BugFix: shape attribute for bar chart is now properly serialized
    • +
    • BugFix: date1904 property now properly set for charts
    • +
    • Added style property to charts
    • +
    • Removed serialization write test as it most commonly fails when run from the gem's intalled directory
  • -
    +

    On Deck

    + +
      +
    • Verification with ruby 1.9.3
    • +
    • Active Record support via package::serialize_ar so you can dump an AR result into a worksheet in one go.
    • +
    + + +

    Copyright

    Axlsx © 2011 by Randy Morgan. Axlsx is licensed under the MIT license. Please see the LICENSE document for more information.

    diff --git a/doc/top-level-namespace.html b/doc/top-level-namespace.html index 4c39c148..428e9271 100644 --- a/doc/top-level-namespace.html +++ b/doc/top-level-namespace.html @@ -94,7 +94,7 @@ -- cgit v1.2.3