philiprehberger-csv_kit 0.2.2 → 0.2.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5102ddea76ed2da14ae72a63b471103facb61636ba548e7d0f00fa985b53cbf1
4
- data.tar.gz: e193e57fac4958f2ef09faca2f5b3811c2561932bc83c785f8dd044bf390267d
3
+ metadata.gz: 8b052136027daf3931ab4db1e45a4ae6004f9098dfb4f0882a1b3f2f2ecf9f25
4
+ data.tar.gz: 8abcdc5696eb0a767ed5bb6ed5d94b37c734edc34761e13941fc51bb3e5a7c2c
5
5
  SHA512:
6
- metadata.gz: aaeeece43096c75e90321a44dde352f1822f5d9685ebacb89240554d6c782076c1bb467b43b8899c274dcadd6a221873c8cdf126144e589ad1af256bacfa73ff
7
- data.tar.gz: 7781416688fa5abde89f73acf7891209511ea590ed10147565887db513fc114d81b116606b8f3bd2e5579699c617722d82d95c5bbd245a5fe75dd3113d266e51
6
+ metadata.gz: 42dd8938bb439449ed0c9eedd7f3e1fe9796ad9113eb16a95d06a7380aa9a2481254436cab75c7e6f7b55c5807ac9790c12e87e7dcded34994bcbc764de48a18
7
+ data.tar.gz: b545efc1632d0ec171b9869dedafc1d2f1935c175a056baabfb4398582f9408a25afdc3d9293ceaef3471d4c636bbaeab9cad848228946046bb791e3c5b2d1f3
data/CHANGELOG.md CHANGED
@@ -1,17 +1,32 @@
1
1
  # Changelog
2
2
 
3
- ## 0.2.2
3
+ All notable changes to this gem will be documented in this file.
4
4
 
5
- - Revert gemspec to single-quoted strings per RuboCop default configuration
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
7
 
7
- ## 0.2.1
8
+ ## [Unreleased]
8
9
 
9
- - Fix RuboCop Style/StringLiterals violations in gemspec
10
+ ## [0.2.4] - 2026-03-24
10
11
 
11
- All notable changes to this gem will be documented in this file.
12
+ ### Fixed
13
+ - Align README one-liner with gemspec summary
12
14
 
13
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
14
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
15
+ ## [0.2.3] - 2026-03-24
16
+
17
+ ### Fixed
18
+ - Standardize README code examples to use double-quote require statements
19
+ - Remove inline comments from Development section to match template
20
+
21
+ ## [0.2.2] - 2026-03-18
22
+
23
+ ### Changed
24
+ - Revert gemspec to single-quoted strings per RuboCop default configuration
25
+
26
+ ## [0.2.1] - 2026-03-18
27
+
28
+ ### Changed
29
+ - Fix RuboCop Style/StringLiterals violations in gemspec
15
30
 
16
31
  ## [0.2.0] - 2026-03-17
17
32
 
@@ -22,13 +37,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
22
37
  - Column aliasing with `rename(:from, :to)` — rename columns during processing
23
38
  - Row callbacks with `after_each` — hook after each row is fully transformed
24
39
 
25
- ## [0.1.2]
40
+ ## [0.1.2] - 2026-03-16
26
41
 
42
+ ### Changed
27
43
  - Add License badge to README
28
44
  - Add bug_tracker_uri to gemspec
29
45
 
30
- ## [Unreleased]
31
-
32
46
  ## [0.1.0] - 2026-03-15
33
47
 
34
48
  ### Added
data/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
  [![Gem Version](https://badge.fury.io/rb/philiprehberger-csv_kit.svg)](https://rubygems.org/gems/philiprehberger-csv_kit)
5
5
  [![License](https://img.shields.io/github/license/philiprehberger/rb-csv-kit)](LICENSE)
6
6
 
7
- Streaming CSV processor with type coercion, validation, writing, and error recovery.
7
+ Streaming CSV processor with type coercion and validation
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 'philiprehberger-csv_kit'
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 'philiprehberger/csv_kit'
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 # Run tests
161
- bundle exec rubocop # Check code style
154
+ bundle exec rspec
155
+ bundle exec rubocop
162
156
  ```
163
157
 
164
158
  ## License
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module CsvKit
5
- VERSION = '0.2.2'
5
+ VERSION = '0.2.4'
6
6
  end
7
7
  end
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.2
4
+ version: 0.2.4
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-19 00:00:00.000000000 Z
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.