csv 3.1.7 → 3.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/NEWS.md +81 -0
- data/README.md +5 -3
- data/doc/csv/options/common/col_sep.rdoc +1 -7
- data/doc/csv/options/common/row_sep.rdoc +0 -9
- data/doc/csv/options/generating/write_converters.rdoc +0 -8
- data/doc/csv/recipes/filtering.rdoc +158 -0
- data/doc/csv/recipes/generating.rdoc +298 -0
- data/doc/csv/recipes/parsing.rdoc +545 -0
- data/doc/csv/recipes/recipes.rdoc +6 -0
- data/lib/csv/fields_converter.rb +6 -2
- data/lib/csv/input_record_separator.rb +31 -0
- data/lib/csv/parser.rb +13 -10
- data/lib/csv/row.rb +499 -132
- data/lib/csv/table.rb +489 -66
- data/lib/csv/version.rb +1 -1
- data/lib/csv/writer.rb +2 -1
- data/lib/csv.rb +344 -169
- metadata +16 -6
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
|
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:
|
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:
|
57
|
+
name: test-unit
|
58
58
|
requirement: !ruby/object:Gem::Requirement
|
59
59
|
requirements:
|
60
60
|
- - ">="
|
61
61
|
- !ruby/object:Gem::Version
|
62
|
-
version:
|
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:
|
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.
|
150
|
+
rubygems_version: 3.3.0.dev
|
141
151
|
signing_key:
|
142
152
|
specification_version: 4
|
143
153
|
summary: CSV Reading and Writing
|