active_list 6.4.1 → 6.4.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: 72dbe9e691d7aa7dd1a1387ba234caa8de046461
4
- data.tar.gz: d6fa20867ddced7b0facf4facc32d70d7dac9226
3
+ metadata.gz: bd4c696233d13bcef30aa85cda9210d53024d198
4
+ data.tar.gz: 9a0305880cb9867f59340984dedb177fb7a6bb7c
5
5
  SHA512:
6
- metadata.gz: 8889676c41832dcf16b5b3b64a8b7aac3870bb8dd16203a62d7d12a27f1381096d785b1f8a3b1a674ddb5c41887868446daa58660f3f46c6e7f701e0ae09aa1f
7
- data.tar.gz: 551bb26fbbc17be3ee96c139a0b1bc5bfbcb8a2acab434b9dd63efc3143769ec1f71f01db67cc9f3f46d232042e53881eb074f81b52961123e6e871d3259892c
6
+ metadata.gz: 11f71004fd328c21857cc4d5e6b63f49607119de9ac4f7c4b5d8e21331d63526c5c8ad9e1740a75d360ac51d1c22f336f5ec5ecefa6755dac1ec813564e419fc
7
+ data.tar.gz: b9552f9f186e45bebd4d369d8644cc739fbf2eccb6f6dde51d3469bc7664eb86f8a5e6e7eb7bb90b7d0c0e765883e26e17dbbda07cb90afdb28a82a49254de1d
@@ -27,7 +27,7 @@ module ActiveList
27
27
  headers, columns = [], table.exportable_columns
28
28
  for column in columns
29
29
  datum = column.header_code
30
- headers << (options[:encoding] ? datum+".to_s.encode('#{options[:encoding]}')" : datum)
30
+ headers << (options[:encoding] ? datum+".to_s.encode('#{options[:encoding]}', invalid: :replace, undef: :replace)" : datum)
31
31
  end
32
32
  return headers
33
33
  end
@@ -44,7 +44,7 @@ module ActiveList
44
44
  else
45
45
  datum = column.exporting_datum_code(record)
46
46
  end
47
- array << (options[:encoding] ? datum+".to_s.encode('#{options[:encoding]}')" : datum)
47
+ array << (options[:encoding] ? datum+".to_s.encode('#{options[:encoding]}', invalid: :replace, undef: :replace)" : datum)
48
48
  end
49
49
  end
50
50
  return array
@@ -1,5 +1,5 @@
1
1
  module ActiveList
2
2
 
3
- VERSION = "6.4.1"
3
+ VERSION = "6.4.2"
4
4
 
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_list
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.4.1
4
+ version: 6.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brice Texier
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-02-11 00:00:00.000000000 Z
11
+ date: 2015-03-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -228,7 +228,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
228
228
  version: '0'
229
229
  requirements: []
230
230
  rubyforge_project:
231
- rubygems_version: 2.0.14
231
+ rubygems_version: 2.4.5
232
232
  signing_key:
233
233
  specification_version: 4
234
234
  summary: Simple interactive tables for Rails app