spreadsheet_architect 1.4.4 → 1.4.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b44f43df589a3d9c83f7c2e1ca1a161fa31e41cc
4
- data.tar.gz: 12c021f8da2aad93b0098c309a166992703dc544
3
+ metadata.gz: 7a2f904b9e2057fc38c86e0c33ae7864c06941ae
4
+ data.tar.gz: 4c6522b85284b042c5d6329fc6c28b731cbb72a4
5
5
  SHA512:
6
- metadata.gz: 5796b11be282c0c1f6505a4c4af3d4cdca07bc2cce3c7b5b2e2ea76a2da4da12ecb3e9b08b8ec87ab3873d27d50f591f8a457c3def884ddb3e9b3962863cc4ff
7
- data.tar.gz: f4c02813cd5ecca684ae68a18adb15c353ec24a8a83006b7056e6678e2e406a533595ab62c1619c99d651bc38e41124f27b7ece1034efa549556ef9cd7011c03
6
+ metadata.gz: 9f8028c8cc80bb4b383c52c42d8e3b5360a595b55f7a3a2e0bd960be8b807f6af0535db905e257c47c2aff56f26f57fa305c6fb4a4f02ae1f39c2ff1dae60963
7
+ data.tar.gz: 08b09652e4c56718f7396fce816aa5dbd75cf4709fc263ec2965320a37593832a99a88722b2318e073ceee102403651b5a0348d01b783be136eba99fe35729f7
@@ -1,7 +1,13 @@
1
1
  CHANGELOG
2
2
  ---------
3
3
 
4
- - **May.3.2016**: 1.5.0
4
+ - **May.4.2016**: 1.4.5
5
+ - Bug fixes
6
+ - **May.3.2016**: 1.4.4
7
+ - Add Ability to add format_code to all numbers body rows
8
+ - **May.3.2016**: 1.4.3
9
+ - Bug fixes
10
+ - **May.3.2016**: 1.4.2
5
11
  - Add to_axlsx_package, to_rodf_spreadsheet methods for the item to be further manipulated. Ex. axlsx_styler
6
12
  - **May.2.2016**: 1.4.1
7
13
  - Add rails generator for project defaults initializer
@@ -314,7 +314,7 @@ module SpreadsheetArchitect
314
314
  end
315
315
 
316
316
  options[:data].each do |row_data|
317
- row_style.merge!(format_code: opts[:row_style][:number_format_code]) if opts[:row_style][:number_format_code]
317
+ row_style.merge!(format_code: opts[:row_style][:number_format_code]) if opts[:row_style] && opts[:row_style][:number_format_code]
318
318
  sheet.add_row row_data, style: package.workbook.styles.add_style(row_style), types: options[:types]
319
319
  end
320
320
  end
@@ -1,3 +1,3 @@
1
1
  module SpreadsheetArchitect
2
- VERSION = "1.4.4"
2
+ VERSION = "1.4.5"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spreadsheet_architect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.4
4
+ version: 1.4.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Weston Ganger