csv 3.1.7 → 3.1.8
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 +4 -4
- data/NEWS.md +11 -0
- data/README.md +5 -0
- 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.rb +67 -26
- data/lib/csv/row.rb +477 -132
- data/lib/csv/table.rb +486 -65
- data/lib/csv/version.rb +1 -1
- metadata +11 -3
data/lib/csv/version.rb
CHANGED
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.1.8
|
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-
|
12
|
+
date: 2020-11-17 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -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,6 +109,10 @@ 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
|
@@ -137,7 +145,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
137
145
|
- !ruby/object:Gem::Version
|
138
146
|
version: '0'
|
139
147
|
requirements: []
|
140
|
-
rubygems_version: 3.2.0.rc.
|
148
|
+
rubygems_version: 3.2.0.rc.2
|
141
149
|
signing_key:
|
142
150
|
specification_version: 4
|
143
151
|
summary: CSV Reading and Writing
|