philiprehberger-csv_kit 0.2.2 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5102ddea76ed2da14ae72a63b471103facb61636ba548e7d0f00fa985b53cbf1
4
- data.tar.gz: e193e57fac4958f2ef09faca2f5b3811c2561932bc83c785f8dd044bf390267d
3
+ metadata.gz: 4c35825a1d3ef7d421c3f81a39764ec731b1fdee58cb36233f8814d6bf64204a
4
+ data.tar.gz: 9ef07017bee59e872f3553ab00c2477f4e48b98f7667f1a90fa63280cf9454ed
5
5
  SHA512:
6
- metadata.gz: aaeeece43096c75e90321a44dde352f1822f5d9685ebacb89240554d6c782076c1bb467b43b8899c274dcadd6a221873c8cdf126144e589ad1af256bacfa73ff
7
- data.tar.gz: 7781416688fa5abde89f73acf7891209511ea590ed10147565887db513fc114d81b116606b8f3bd2e5579699c617722d82d95c5bbd245a5fe75dd3113d266e51
6
+ metadata.gz: 63090fc561da814943591e38cb070ffacce6ea9a85104fbfd6a64850834f8ec0047ed3a6b5d9525aa2d1eb930d1883c07376a89f9e2add7859a362abafb8a407
7
+ data.tar.gz: 82a690e38566ecec250d8bc74bdbd02581c46dbdf34749cfc017c5dc174321c98bc8634b4e98b5abd0285e447efcf359fb543f1a8da2ee25200145c17c471804
data/CHANGELOG.md CHANGED
@@ -1,17 +1,27 @@
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.3] - 2026-03-24
10
11
 
11
- All notable changes to this gem will be documented in this file.
12
+ ### Fixed
13
+ - Standardize README code examples to use double-quote require statements
14
+ - Remove inline comments from Development section to match template
12
15
 
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).
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
15
25
 
16
26
  ## [0.2.0] - 2026-03-17
17
27
 
@@ -22,13 +32,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
22
32
  - Column aliasing with `rename(:from, :to)` — rename columns during processing
23
33
  - Row callbacks with `after_each` — hook after each row is fully transformed
24
34
 
25
- ## [0.1.2]
35
+ ## [0.1.2] - 2026-03-16
26
36
 
37
+ ### Changed
27
38
  - Add License badge to README
28
39
  - Add bug_tracker_uri to gemspec
29
40
 
30
- ## [Unreleased]
31
-
32
41
  ## [0.1.0] - 2026-03-15
33
42
 
34
43
  ### 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, 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 '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.3'
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.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-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.