Skip to content

Commit

Permalink
documentation updates and example dir restructuring.
Browse files Browse the repository at this point in the history
  • Loading branch information
Randy Morgan committed Apr 25, 2012
1 parent 1381dca commit 91ea5ff
Show file tree
Hide file tree
Showing 10 changed files with 9 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -24,7 +24,7 @@ Axlsx: Office Open XML Spreadsheet Generation


**Rubinius Version**: rubinius 2.0.0dev * lower versions may run, this gem always tests against head. **Rubinius Version**: rubinius 2.0.0dev * lower versions may run, this gem always tests against head.


**Release Date**: April 18th 2012 **Release Date**: April 25th 2012


Synopsis Synopsis
-------- --------
Expand Down Expand Up @@ -478,7 +478,7 @@ This gem has 100% test coverage using test/unit. To execute tests for this gem,
- Conditional Formatting completely implemented. - Conditional Formatting completely implemented.
- refactoring / documentation for Style#add_style - refactoring / documentation for Style#add_style
- added in label rotation for chart axis labels - added in label rotation for chart axis labels
- bugfix to porperly assign style and type info to cells when only partial information is provided in the types/style option - bugfix to properly assign style and type info to cells when only partial information is provided in the types/style option


- ** April.18.12**: 1.1.1 release - ** April.18.12**: 1.1.1 release
- bugfix for autowidth calculations across multiple rows - bugfix for autowidth calculations across multiple rows
Expand Down Expand Up @@ -530,4 +530,4 @@ Please see the {file:CHANGELOG.md} document for past release information.
---------- ----------


Axlsx © 2011-2012 by [Randy Morgan](mailto:digial.ipseity@gmail.com). Axlsx is Axlsx © 2011-2012 by [Randy Morgan](mailto:digial.ipseity@gmail.com). Axlsx is
licensed under the MIT license. Please see the {file:LICENSE} document for more information. licensed under the MIT license. Please see the LICENSE document for more information.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 2 additions & 0 deletions lib/axlsx/workbook/worksheet/conditional_formatting_rule.rb
Expand Up @@ -7,6 +7,8 @@ module Axlsx
# @see Worksheet#add_conditional_formatting # @see Worksheet#add_conditional_formatting
# @see ConditionalFormattingRule#initialize # @see ConditionalFormattingRule#initialize
class ConditionalFormattingRule class ConditionalFormattingRule

# instance values that must be serialized as their own elements - e.g. not attributes.
CHILD_ELEMENTS = [:formula, :color_scale, :data_bar, :icon_set] CHILD_ELEMENTS = [:formula, :color_scale, :data_bar, :icon_set]


# Formula # Formula
Expand Down
2 changes: 2 additions & 0 deletions lib/axlsx/workbook/worksheet/data_bar.rb
Expand Up @@ -6,6 +6,8 @@ module Axlsx
# @see Worksheet#add_conditional_formatting # @see Worksheet#add_conditional_formatting
# @see ConditionalFormattingRule#initialize # @see ConditionalFormattingRule#initialize
class DataBar class DataBar

# instance values that must be serialized as their own elements - e.g. not attributes.
CHILD_ELEMENTS = [:value_objects, :color] CHILD_ELEMENTS = [:value_objects, :color]


# minLength attribute # minLength attribute
Expand Down
2 changes: 2 additions & 0 deletions lib/axlsx/workbook/worksheet/icon_set.rb
Expand Up @@ -6,6 +6,8 @@ module Axlsx
# @see Worksheet#add_conditional_formatting # @see Worksheet#add_conditional_formatting
# @see ConditionalFormattingRule#initialize # @see ConditionalFormattingRule#initialize
class IconSet class IconSet

# instance values that must be serialized as their own elements - e.g. not attributes.
CHILD_ELEMENTS = [:value_objects] CHILD_ELEMENTS = [:value_objects]


# The icon set to display. # The icon set to display.
Expand Down

0 comments on commit 91ea5ff

Please sign in to comment.