philiprehberger-csv_builder 0.1.2 → 0.1.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: 7f508e35f202cddd15b4771eb2428ed0a7b547d8be8526a4af73ace614ef83b2
4
- data.tar.gz: ed3ebb086969be1b4c385af02f5b79c84cc1cac85ce8bfebf8357b50812e53d6
3
+ metadata.gz: 9befa4c64115384c05f950d6f3c4e73ddf4e3e364d88408cbbe75358924ecfde
4
+ data.tar.gz: 1e93bbf0bff87dacb53e57b0be7c3e457d955d38a39d0144dbbd0124f6c0def1
5
5
  SHA512:
6
- metadata.gz: 77902d8a184b4de6a3d6381d70774438d76d3ee48097415ed1339a18f14957c7d9858651588c67202a4b075b7a56778f0524f9510c6d2b2cdc4a0f25138e4110
7
- data.tar.gz: 3ae5e0131168356170142ce24748fa339c7c5e2866ac314e0da01599b8471d42cabda7f1f343338c823510f71754ebb797ceece23d257e9436b3f317278345eb
6
+ metadata.gz: 0336bf8d47213dbc2b5a8811671968c42d62025338d6872f9d88a95a7976b753c09bc49eecab612b6a7e48819792c835126786f7f1626db6e47b5139a9273625
7
+ data.tar.gz: 3a307cfb11ad03e23526497a853e3411175c2e50a1893d6bca4e7b2addbf1a8e4a0af52d5e9f1561daa18af514989c09e92bf278ca78169d69d3040eaff70ab7
data/CHANGELOG.md CHANGED
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.4] - 2026-03-31
11
+
12
+ ### Changed
13
+ - Standardize README badges, support section, and license format
14
+
15
+ ## [0.1.3] - 2026-03-24
16
+
17
+ ### Fixed
18
+ - Remove inline comments from Development section to match template
19
+
10
20
  ## [0.1.2] - 2026-03-22
11
21
 
12
22
  ### Changed
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![Tests](https://github.com/philiprehberger/rb-csv-builder/actions/workflows/ci.yml/badge.svg)](https://github.com/philiprehberger/rb-csv-builder/actions/workflows/ci.yml)
4
4
  [![Gem Version](https://badge.fury.io/rb/philiprehberger-csv_builder.svg)](https://rubygems.org/gems/philiprehberger-csv_builder)
5
- [![License](https://img.shields.io/github/license/philiprehberger/rb-csv-builder)](LICENSE)
5
+ [![Last updated](https://img.shields.io/github/last-commit/philiprehberger/rb-csv-builder)](https://github.com/philiprehberger/rb-csv-builder/commits/main)
6
6
 
7
7
  Declarative CSV builder with column mapping and streaming output
8
8
 
@@ -96,10 +96,28 @@ builder.headers # => ["name", "email"]
96
96
 
97
97
  ```bash
98
98
  bundle install
99
- bundle exec rspec # Run tests
100
- bundle exec rubocop # Check code style
99
+ bundle exec rspec
100
+ bundle exec rubocop
101
101
  ```
102
102
 
103
+ ## Support
104
+
105
+ If you find this project useful:
106
+
107
+ ⭐ [Star the repo](https://github.com/philiprehberger/rb-csv-builder)
108
+
109
+ 🐛 [Report issues](https://github.com/philiprehberger/rb-csv-builder/issues?q=is%3Aissue+is%3Aopen+label%3Abug)
110
+
111
+ 💡 [Suggest features](https://github.com/philiprehberger/rb-csv-builder/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement)
112
+
113
+ ❤️ [Sponsor development](https://github.com/sponsors/philiprehberger)
114
+
115
+ 🌐 [All Open Source Projects](https://philiprehberger.com/open-source-packages)
116
+
117
+ 💻 [GitHub Profile](https://github.com/philiprehberger)
118
+
119
+ 🔗 [LinkedIn Profile](https://www.linkedin.com/in/philiprehberger)
120
+
103
121
  ## License
104
122
 
105
- MIT
123
+ [MIT](LICENSE)
@@ -25,8 +25,8 @@ module Philiprehberger
25
25
  # @yield [record] optional block to transform the value
26
26
  # @yieldparam record [Object] the source record
27
27
  # @return [self]
28
- def column(name, &block)
29
- @columns << Column.new(name, &block)
28
+ def column(name, &)
29
+ @columns << Column.new(name, &)
30
30
  self
31
31
  end
32
32
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module CsvBuilder
5
- VERSION = '0.1.2'
5
+ VERSION = '0.1.4'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: philiprehberger-csv_builder
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.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-23 00:00:00.000000000 Z
11
+ date: 2026-03-31 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Build CSV files from record collections using a declarative DSL with
14
14
  column definitions, custom transforms, and file output support.