diff options
| author | Randy Morgan <[email protected]> | 2012-07-07 18:51:46 +0900 |
|---|---|---|
| committer | Randy Morgan <[email protected]> | 2012-07-07 18:51:46 +0900 |
| commit | fb4f5feb9d38ee49142a18eb6a1921fd3567964f (patch) | |
| tree | 2a66b259e4807348a026e39284ebf78f57e205f2 /lib/axlsx/doc_props/app.rb | |
| parent | 4c46ee219862e6a5badf47b6df008b1bea0088d5 (diff) | |
| download | caxlsx-fb4f5feb9d38ee49142a18eb6a1921fd3567964f.tar.gz caxlsx-fb4f5feb9d38ee49142a18eb6a1921fd3567964f.zip | |
fixing a type in worksheet serialization and adding in a few missing alias calls for the great snake_case move
Diffstat (limited to 'lib/axlsx/doc_props/app.rb')
| -rw-r--r-- | lib/axlsx/doc_props/app.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/axlsx/doc_props/app.rb b/lib/axlsx/doc_props/app.rb index 73bb6599..0d3968cd 100644 --- a/lib/axlsx/doc_props/app.rb +++ b/lib/axlsx/doc_props/app.rb @@ -133,13 +133,15 @@ module Axlsx # Sets the template property of your app.xml file def template=(v) Axlsx::validate_string v; @template = v; end + alias :Template :template # Sets the manager property of your app.xml file def manager=(v) Axlsx::validate_string v; @manager = v; end + alias :Manager :manager # Sets the company property of your app.xml file def company=(v) Axlsx::validate_string v; @company = v; end - + alias :Company :company # Sets the pages property of your app.xml file def pages=(v) Axlsx::validate_int v; @pages = v; end |
