smarter_csv 1.10.1 → 1.10.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 +4 -4
- data/CHANGELOG.md +3 -0
- data/CONTRIBUTORS.md +1 -1
- data/README.md +2 -7
- data/lib/smarter_csv/header_validations.rb +1 -1
- data/lib/smarter_csv/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '0219682a1b64a05b1310b3fb288d6ac69f2af7702308160d4fa808dcbaaa1243'
|
|
4
|
+
data.tar.gz: 5fced0b9dd9334842aa7bad61073e0a90048dc0e6ba0ac30df59fe4187d9a58d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2ecc95c635c6d8eff39355f4af85422aebd05ca8a599085854e976073ca450f71bd49c498619593d455bd2cb9e4c6c705bc37900d012b5759fdc2077fceb893a
|
|
7
|
+
data.tar.gz: d3b3d7f062c9f2f5838ef2099e1d5a7fedca4061d4f6c7d8e91ecb55b61d73a18efda8b5f00aa68c96452b4385e062d439cc04dd7df8e89395fab94e472e9ab7
|
data/CHANGELOG.md
CHANGED
data/CONTRIBUTORS.md
CHANGED
|
@@ -51,4 +51,4 @@ A Big Thank you to everyone who filed issues, sent comments, and who contributed
|
|
|
51
51
|
* [Rahul Chaudhary](https://github.com/rahulch95)
|
|
52
52
|
* [Alessandro Fazzi](https://github.com/pioneerskies)
|
|
53
53
|
* [JP Camara](https://github.com/jpcamara)
|
|
54
|
-
* [
|
|
54
|
+
* [Kenton Hirowatari](https://github.com/hirowatari)
|
data/README.md
CHANGED
|
@@ -23,13 +23,8 @@
|
|
|
23
23
|
|
|
24
24
|
* default branch is `main` for 1.x development
|
|
25
25
|
|
|
26
|
-
* 2.x development is
|
|
27
|
-
-
|
|
28
|
-
|
|
29
|
-
#### Work towards Future Version 2.x
|
|
30
|
-
|
|
31
|
-
* Work towards SmarterCSV 2.x is still ongoing, with improved features, and more streamlined options, but consider it as experimental at this time.
|
|
32
|
-
Please check the [2.0-develop branch](https://github.com/tilo/smarter_csv/tree/2.0-develop), open any issues and pull requests with mention of tag v2.0.
|
|
26
|
+
* 2.x development is [MOVED TO THIS PR](https://github.com/tilo/smarter_csv/pull/267)
|
|
27
|
+
- 2.x behavior is still EXPERIMENTAL - DO NOT USE in production
|
|
33
28
|
|
|
34
29
|
---------------
|
|
35
30
|
|
|
@@ -26,7 +26,7 @@ module SmarterCSV
|
|
|
26
26
|
missing_keys = options[:required_keys].select { |k| !headers_set.include?(k) }
|
|
27
27
|
|
|
28
28
|
unless missing_keys.empty?
|
|
29
|
-
raise SmarterCSV::MissingKeys, "ERROR: missing attributes: #{missing_keys.join(',')}"
|
|
29
|
+
raise SmarterCSV::MissingKeys, "ERROR: missing attributes: #{missing_keys.join(',')}. Check `SmarterCSV.headers` for original headers."
|
|
30
30
|
end
|
|
31
31
|
end
|
|
32
32
|
end
|
data/lib/smarter_csv/version.rb
CHANGED
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.10.
|
|
4
|
+
version: 1.10.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tilo Sloboda
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-02-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: awesome_print
|