spreadsheet_architect 1.4.4 → 1.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -1
- data/lib/spreadsheet_architect.rb +1 -1
- data/lib/spreadsheet_architect/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7a2f904b9e2057fc38c86e0c33ae7864c06941ae
|
|
4
|
+
data.tar.gz: 4c6522b85284b042c5d6329fc6c28b731cbb72a4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9f8028c8cc80bb4b383c52c42d8e3b5360a595b55f7a3a2e0bd960be8b807f6af0535db905e257c47c2aff56f26f57fa305c6fb4a4f02ae1f39c2ff1dae60963
|
|
7
|
+
data.tar.gz: 08b09652e4c56718f7396fce816aa5dbd75cf4709fc263ec2965320a37593832a99a88722b2318e073ceee102403651b5a0348d01b783be136eba99fe35729f7
|
data/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
CHANGELOG
|
|
2
2
|
---------
|
|
3
3
|
|
|
4
|
-
- **May.
|
|
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
|