csv_shaper 1.3.1 → 1.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a80ca33e1cff80cda6f06d8ee7d8b6c33229b2911031de5ee2d2d1a02e3f6c05
4
- data.tar.gz: 054dbdc041cbbc51063b6988fe1a0a2d9d085ec4f3e3bf5209f9c0038b523316
3
+ metadata.gz: c06a84401d676f513ab8f089bfcea8cb244d806aabf77f4656e44ecc8d9a4f6e
4
+ data.tar.gz: 9e227b8653d95f8ab32b5d330fa7b14045c4e67db35e53f20406bb17a4e195fa
5
5
  SHA512:
6
- metadata.gz: 1720b33b849287cb2695395ea797beec679bf64776c03186020c86cbc26e4261224a66157642c62c9e440321dedae823976cb218d0823ed2e3faa2f9760d007e
7
- data.tar.gz: d0814a238d065a7ec894cebb1aff61b5aafdd70a3927d2b668a19f9f50b54c20238180666db32ae4f72f02413c6b54b4a9e0e8f734f22ff9b239b691e5cf8686
6
+ metadata.gz: c9b10a4737247def56c00ddd6897b96d3547dafca91c041a93c50a2270efb5b2b215adaf8cda876b111fa59a637441e92f542a2c63f7f8d1cbe0140871b250d6
7
+ data.tar.gz: 2ad0ae7d740549839707e44273a6577ef5db6227e69198234d6cad784909c65055302d57dcad8413a096ca87febef1d9c5cb739cb9949e0346db0149eba52a21
@@ -0,0 +1 @@
1
+ ruby 2.7.0
@@ -1,3 +1,4 @@
1
1
  rvm:
2
- - 2.2.5
3
- - 2.3.1
2
+ - 2.7.1
3
+ - 2.6.6
4
+ - 2.5.8
@@ -33,7 +33,7 @@ module CsvShaper
33
33
 
34
34
  table = CSV::Table.new(rows)
35
35
  csv_options.except!(*custom_options.keys)
36
- table.to_csv(csv_options)
36
+ table.to_csv(**csv_options)
37
37
  end
38
38
 
39
39
  private
@@ -1,3 +1,3 @@
1
1
  module CsvShaper
2
- VERSION = "1.3.1"
2
+ VERSION = "1.3.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: csv_shaper
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.1
4
+ version: 1.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul Springett
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-08-31 00:00:00.000000000 Z
11
+ date: 2020-08-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -66,6 +66,7 @@ files:
66
66
  - ".groc.json"
67
67
  - ".rspec"
68
68
  - ".ruby-version"
69
+ - ".tool-versions"
69
70
  - ".travis.yml"
70
71
  - Gemfile
71
72
  - LICENSE
@@ -108,8 +109,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
108
109
  - !ruby/object:Gem::Version
109
110
  version: '0'
110
111
  requirements: []
111
- rubyforge_project:
112
- rubygems_version: 2.7.7
112
+ rubygems_version: 3.1.2
113
113
  signing_key:
114
114
  specification_version: 4
115
115
  summary: Beautiful DSL for creating CSV output in Ruby & Rails