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. --- doc/index.html | 30 +++++++++++++++++++++--------- 1 file changed, 21 insertions(+), 9 deletions(-) (limited to 'doc/index.html') 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
  • -
    +

    On Deck

    + + + + +

    Copyright

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

    -- cgit v1.2.3