meta_reports 0.1.1 → 0.1.2
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/README.md +1 -0
- data/app/views/meta_reports/_default_table.pdf.prawn +1 -1
- data/lib/meta_reports/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8cef4650044b00ba59bed00bf7bf3d6ac46091b7
|
|
4
|
+
data.tar.gz: 805cf529e94665505a1de21e95f13218985ffdda
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d47d2b540b8edd766db02c5949c399409b9c5113dcd75cff12c036b2d7fc77e40936c6c9a6b3460345162f026206efcdc9da3b91b76a313c20fd91195299fbb7
|
|
7
|
+
data.tar.gz: bec2ac85149f44e665c8cc518312f4c449cff338a264b0af9294f365e8fa3f5ed43c486f7dd2dc16de53d42db1b19cd2b3e55b59f0f5448a1e03472c8f495987
|
data/README.md
CHANGED
|
@@ -203,6 +203,7 @@ To export only the colors file, use the `meta_reports:export_colors_only` Rake t
|
|
|
203
203
|
|
|
204
204
|
##Changelog
|
|
205
205
|
|
|
206
|
+
- **0.1.2:** (10/02/14) Handle empty row_class option
|
|
206
207
|
- **0.1.1:** (10/02/14) Fix class loading problem
|
|
207
208
|
- **0.1.0:** (10/01/14) Drop engine. Just models / templates. Breaking change if you were using the engine.
|
|
208
209
|
- **0.0.5:** (11/16/13) Simplify color handling, color individual cells
|
|
@@ -17,7 +17,7 @@ pdf.table prep_pdf_table(table, styling), :header => table_header, :row_colors =
|
|
|
17
17
|
styling[:bold].to_a.each do |cell|
|
|
18
18
|
t.style t.row(cell[0]).column(cell[1]), :font_style => :bold
|
|
19
19
|
end
|
|
20
|
-
styling[:row_colors].each do |row, color|
|
|
20
|
+
styling[:row_colors].to_a.each do |row, color|
|
|
21
21
|
t.style t.row(row+row_offset), :background_color => color
|
|
22
22
|
end
|
|
23
23
|
styling[:cell_bg_colors].to_a.each do |cell|
|
data/lib/meta_reports/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: meta_reports
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Noel Peden
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-10-
|
|
11
|
+
date: 2014-10-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|