philiprehberger-csv_kit 0.2.0 → 0.2.3
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 +20 -3
- data/README.md +5 -11
- data/lib/philiprehberger/csv_kit/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: 4c35825a1d3ef7d421c3f81a39764ec731b1fdee58cb36233f8814d6bf64204a
|
|
4
|
+
data.tar.gz: 9ef07017bee59e872f3553ab00c2477f4e48b98f7667f1a90fa63280cf9454ed
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 63090fc561da814943591e38cb070ffacce6ea9a85104fbfd6a64850834f8ec0047ed3a6b5d9525aa2d1eb930d1883c07376a89f9e2add7859a362abafb8a407
|
|
7
|
+
data.tar.gz: 82a690e38566ecec250d8bc74bdbd02581c46dbdf34749cfc017c5dc174321c98bc8634b4e98b5abd0285e447efcf359fb543f1a8da2ee25200145c17c471804
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,24 @@ All notable changes to this gem will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [Unreleased]
|
|
9
|
+
|
|
10
|
+
## [0.2.3] - 2026-03-24
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Standardize README code examples to use double-quote require statements
|
|
14
|
+
- Remove inline comments from Development section to match template
|
|
15
|
+
|
|
16
|
+
## [0.2.2] - 2026-03-18
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- Revert gemspec to single-quoted strings per RuboCop default configuration
|
|
20
|
+
|
|
21
|
+
## [0.2.1] - 2026-03-18
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
- Fix RuboCop Style/StringLiterals violations in gemspec
|
|
25
|
+
|
|
8
26
|
## [0.2.0] - 2026-03-17
|
|
9
27
|
|
|
10
28
|
### Added
|
|
@@ -14,13 +32,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
14
32
|
- Column aliasing with `rename(:from, :to)` — rename columns during processing
|
|
15
33
|
- Row callbacks with `after_each` — hook after each row is fully transformed
|
|
16
34
|
|
|
17
|
-
## [0.1.2]
|
|
35
|
+
## [0.1.2] - 2026-03-16
|
|
18
36
|
|
|
37
|
+
### Changed
|
|
19
38
|
- Add License badge to README
|
|
20
39
|
- Add bug_tracker_uri to gemspec
|
|
21
40
|
|
|
22
|
-
## [Unreleased]
|
|
23
|
-
|
|
24
41
|
## [0.1.0] - 2026-03-15
|
|
25
42
|
|
|
26
43
|
### Added
|
data/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
[](https://rubygems.org/gems/philiprehberger-csv_kit)
|
|
5
5
|
[](LICENSE)
|
|
6
6
|
|
|
7
|
-
Streaming CSV processor with type coercion, validation, writing, and error recovery
|
|
7
|
+
Streaming CSV processor with type coercion, validation, writing, and error recovery
|
|
8
8
|
|
|
9
9
|
## Requirements
|
|
10
10
|
|
|
@@ -15,13 +15,7 @@ Streaming CSV processor with type coercion, validation, writing, and error recov
|
|
|
15
15
|
Add to your Gemfile:
|
|
16
16
|
|
|
17
17
|
```ruby
|
|
18
|
-
gem
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
Then run:
|
|
22
|
-
|
|
23
|
-
```bash
|
|
24
|
-
bundle install
|
|
18
|
+
gem "philiprehberger-csv_kit"
|
|
25
19
|
```
|
|
26
20
|
|
|
27
21
|
Or install directly:
|
|
@@ -33,7 +27,7 @@ gem install philiprehberger-csv_kit
|
|
|
33
27
|
## Usage
|
|
34
28
|
|
|
35
29
|
```ruby
|
|
36
|
-
require
|
|
30
|
+
require "philiprehberger/csv_kit"
|
|
37
31
|
```
|
|
38
32
|
|
|
39
33
|
### Quick Load
|
|
@@ -157,8 +151,8 @@ delimiter = Philiprehberger::CsvKit::Detector.detect('data.tsv')
|
|
|
157
151
|
|
|
158
152
|
```bash
|
|
159
153
|
bundle install
|
|
160
|
-
bundle exec rspec
|
|
161
|
-
bundle exec rubocop
|
|
154
|
+
bundle exec rspec
|
|
155
|
+
bundle exec rubocop
|
|
162
156
|
```
|
|
163
157
|
|
|
164
158
|
## License
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: philiprehberger-csv_kit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Philip Rehberger
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-03-
|
|
11
|
+
date: 2026-03-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Streaming CSV processor with row-by-row transforms, validations, column
|
|
14
14
|
plucking, filtering, writing, error recovery, and automatic delimiter detection.
|