csv 3.1.7 → 3.2.1

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.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: csv
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.7
4
+ version: 3.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Edward Gray II
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-08-04 00:00:00.000000000 Z
12
+ date: 2021-10-22 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -54,19 +54,19 @@ dependencies:
54
54
  - !ruby/object:Gem::Version
55
55
  version: '0'
56
56
  - !ruby/object:Gem::Dependency
57
- name: simplecov
57
+ name: test-unit
58
58
  requirement: !ruby/object:Gem::Requirement
59
59
  requirements:
60
60
  - - ">="
61
61
  - !ruby/object:Gem::Version
62
- version: '0'
62
+ version: 3.4.8
63
63
  type: :development
64
64
  prerelease: false
65
65
  version_requirements: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
- version: '0'
69
+ version: 3.4.8
70
70
  description: The CSV library provides a complete interface to CSV files and data.
71
71
  It offers tools to enable you to read and write to and from Strings or IO objects,
72
72
  as needed.
@@ -79,6 +79,10 @@ extra_rdoc_files:
79
79
  - LICENSE.txt
80
80
  - NEWS.md
81
81
  - README.md
82
+ - doc/csv/recipes/filtering.rdoc
83
+ - doc/csv/recipes/generating.rdoc
84
+ - doc/csv/recipes/parsing.rdoc
85
+ - doc/csv/recipes/recipes.rdoc
82
86
  files:
83
87
  - LICENSE.txt
84
88
  - NEWS.md
@@ -105,11 +109,16 @@ files:
105
109
  - doc/csv/options/parsing/skip_lines.rdoc
106
110
  - doc/csv/options/parsing/strip.rdoc
107
111
  - doc/csv/options/parsing/unconverted_fields.rdoc
112
+ - doc/csv/recipes/filtering.rdoc
113
+ - doc/csv/recipes/generating.rdoc
114
+ - doc/csv/recipes/parsing.rdoc
115
+ - doc/csv/recipes/recipes.rdoc
108
116
  - lib/csv.rb
109
117
  - lib/csv/core_ext/array.rb
110
118
  - lib/csv/core_ext/string.rb
111
119
  - lib/csv/delete_suffix.rb
112
120
  - lib/csv/fields_converter.rb
121
+ - lib/csv/input_record_separator.rb
113
122
  - lib/csv/match_p.rb
114
123
  - lib/csv/parser.rb
115
124
  - lib/csv/row.rb
@@ -118,6 +127,7 @@ files:
118
127
  - lib/csv/writer.rb
119
128
  homepage: https://github.com/ruby/csv
120
129
  licenses:
130
+ - Ruby
121
131
  - BSD-2-Clause
122
132
  metadata: {}
123
133
  post_install_message:
@@ -137,7 +147,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
137
147
  - !ruby/object:Gem::Version
138
148
  version: '0'
139
149
  requirements: []
140
- rubygems_version: 3.2.0.rc.1
150
+ rubygems_version: 3.3.0.dev
141
151
  signing_key:
142
152
  specification_version: 4
143
153
  summary: CSV Reading and Writing