smarter_csv 1.8.5 → 1.9.2.pre01
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/.rubocop.yml +13 -1
- data/CHANGELOG.md +34 -0
- data/Gemfile +6 -3
- data/README.md +24 -4
- data/Rakefile +29 -15
- data/ext/smarter_csv/extconf.rb +2 -2
- data/ext/smarter_csv/smarter_csv.c +8 -2
- data/lib/smarter_csv/options_processing.rb +84 -0
- data/lib/smarter_csv/smarter_csv.rb +556 -0
- data/lib/smarter_csv/version.rb +1 -1
- data/lib/smarter_csv.rb +27 -605
- data/smarter_csv.gemspec +10 -6
- metadata +9 -6
- /data/lib/{extensions → core_ext}/hash.rb +0 -0
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: smarter_csv
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.9.2.pre01
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tilo Sloboda
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-11-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: awesome_print
|
@@ -115,8 +115,10 @@ files:
|
|
115
115
|
- TO_DO_v2.md
|
116
116
|
- ext/smarter_csv/extconf.rb
|
117
117
|
- ext/smarter_csv/smarter_csv.c
|
118
|
-
- lib/
|
118
|
+
- lib/core_ext/hash.rb
|
119
119
|
- lib/smarter_csv.rb
|
120
|
+
- lib/smarter_csv/options_processing.rb
|
121
|
+
- lib/smarter_csv/smarter_csv.rb
|
120
122
|
- lib/smarter_csv/version.rb
|
121
123
|
- smarter_csv.gemspec
|
122
124
|
homepage: https://github.com/tilo/smarter_csv
|
@@ -130,16 +132,17 @@ post_install_message:
|
|
130
132
|
rdoc_options: []
|
131
133
|
require_paths:
|
132
134
|
- lib
|
135
|
+
- ext
|
133
136
|
required_ruby_version: !ruby/object:Gem::Requirement
|
134
137
|
requirements:
|
135
138
|
- - ">="
|
136
139
|
- !ruby/object:Gem::Version
|
137
|
-
version:
|
140
|
+
version: 2.5.0
|
138
141
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
139
142
|
requirements:
|
140
|
-
- - "
|
143
|
+
- - ">"
|
141
144
|
- !ruby/object:Gem::Version
|
142
|
-
version:
|
145
|
+
version: 1.3.1
|
143
146
|
requirements: []
|
144
147
|
rubygems_version: 3.2.3
|
145
148
|
signing_key:
|
File without changes
|