meta_reports 0.1.1 → 0.1.2

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: 357256cd10b87a617f8ca7de62a689d4708bd088
4
- data.tar.gz: 1568d8f9e08da8ebf9ed4067de58d6be698719ef
3
+ metadata.gz: 8cef4650044b00ba59bed00bf7bf3d6ac46091b7
4
+ data.tar.gz: 805cf529e94665505a1de21e95f13218985ffdda
5
5
  SHA512:
6
- metadata.gz: 5c535b881be45f100ff24a49a16b2d59a0f3c6152c597b2c4f23c1360eab903d47a21cca4064f82d1cfe6c4a09ca9fe71ed6a4b9f78d0f71e1e65baf8c094132
7
- data.tar.gz: a43b6a212044bc4b67a8fa7ec4a811673293588fbba5e0c77bc9409b8419bf8f5326d4bff8ac159b816abc0f24ee3acb79dadec19b5db9bd3ff39cfb82497df1
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|
@@ -1,3 +1,3 @@
1
1
  module MetaReports
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
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.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-02 00:00:00.000000000 Z
11
+ date: 2014-10-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails