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 +4 -4
- data/CHANGELOG.md +10 -0
- data/README.md +22 -4
- data/lib/philiprehberger/csv_builder/builder.rb +2 -2
- data/lib/philiprehberger/csv_builder/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: 9befa4c64115384c05f950d6f3c4e73ddf4e3e364d88408cbbe75358924ecfde
|
|
4
|
+
data.tar.gz: 1e93bbf0bff87dacb53e57b0be7c3e457d955d38a39d0144dbbd0124f6c0def1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
[](https://github.com/philiprehberger/rb-csv-builder/actions/workflows/ci.yml)
|
|
4
4
|
[](https://rubygems.org/gems/philiprehberger-csv_builder)
|
|
5
|
-
[](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
|
|
100
|
-
bundle exec rubocop
|
|
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, &
|
|
29
|
-
@columns << Column.new(name, &
|
|
28
|
+
def column(name, &)
|
|
29
|
+
@columns << Column.new(name, &)
|
|
30
30
|
self
|
|
31
31
|
end
|
|
32
32
|
|
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.
|
|
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-
|
|
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.
|