philiprehberger-data_mapper 0.4.0 → 0.6.0

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: e5404a0cdcc13d6351546a1eba5afde88afd31ea3a26fb02884166918aee9cb0
4
- data.tar.gz: 0e7d36ecf87018ebce2eb8bcfe2decaee35c120f79c006a954883cd8cb4d2b20
3
+ metadata.gz: 1e3fb4ef570f5687ce40b83423e1a831c585718696082a00a356a005598ad446
4
+ data.tar.gz: b00a3a344096b9e678a2dea5a2e558cf70fd912fa863351704aa73ca3672d0d6
5
5
  SHA512:
6
- metadata.gz: 61416ea1c4083f22dee9c828f585b19d7d6dbce1b57f3d0e3100d27b72890bdb44be2fd7e216bfaa5b99a8c75ec5a1e19c012be55bb55e2c2f7080845d9fc806
7
- data.tar.gz: 64d3f10c97e693f882ba0e52e0661d2b26e19a32759478f43fcf5013b8124204e546c08bf3eefdd9f713c7d8e9c616e9e54ab7e876a18b981c52f4564dc90b83
6
+ metadata.gz: ea73b6ed241967a0e9c544aa57635fb08c21dfe6b4d498721905cff7ff63c4f55bcbcc3839041c0f899c1857bc916dcd1bf31f96ab823438e372a76eb08b1e02
7
+ data.tar.gz: ddf8d77ec5eba001b9ffb27d0290eb5a036a9801cbabfd5c566fb9f0c25ac65d277bb90a70191126cd238e415324f38da41e18cc2c232f4fb0cd730ef6b0c925
data/CHANGELOG.md CHANGED
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.6.0] - 2026-04-21
11
+
12
+ ### Added
13
+ - `Mapping#call(hash)` — alias for `#map`, enabling `Mapping` instances to be used as callables
14
+ - `Mapping#to_proc` — returns a `Proc` that maps a single record, allowing idiomatic usage like `rows.map(&mapping)`
15
+
16
+ ## [0.5.0] - 2026-04-18
17
+
18
+ ### Added
19
+ - `Mapping#map_lazy(enumerable)` — returns a `Lazy` Enumerator that applies `#map` per-element; suitable for streaming large inputs without materialization
20
+
10
21
  ## [0.4.0] - 2026-04-15
11
22
 
12
23
  ### Added
data/README.md CHANGED
@@ -55,6 +55,34 @@ mapping.map_all(input)
55
55
  # => [{ full_name: "Alice", years: 30, role: "member" }, ...]
56
56
  ```
57
57
 
58
+ ### Lazy streaming
59
+
60
+ Use `map_lazy` to pipe huge datasets without materializing an intermediate array. It returns an `Enumerator::Lazy` that applies `#map` per-element, so it composes with `.first`, `.select`, `.reject`, and works on infinite enumerables:
61
+
62
+ ```ruby
63
+ mapping = Philiprehberger::DataMapper.define do
64
+ field :id
65
+ end
66
+
67
+ infinite = (1..).lazy.map { |i| { "id" => i } }
68
+ mapping.map_lazy(infinite).first(3)
69
+ # => [{ id: 1 }, { id: 2 }, { id: 3 }]
70
+ ```
71
+
72
+ ### Use as a callable
73
+
74
+ `Mapping#call` is an alias for `#map`, and `Mapping#to_proc` returns a proc, so a mapping can be passed wherever a callable is expected:
75
+
76
+ ```ruby
77
+ mapping = Philiprehberger::DataMapper.define do
78
+ field :name, from: :Name
79
+ end
80
+
81
+ mapping.call({ Name: "Ada" }) # => { name: "Ada" }
82
+ [{ Name: "Ada" }, { Name: "Lin" }].map(&mapping)
83
+ # => [{ name: "Ada" }, { name: "Lin" }]
84
+ ```
85
+
58
86
  ### Parse CSV
59
87
 
60
88
  ```ruby
@@ -209,8 +237,11 @@ result.errors # => [{ field: :age, value: -1 }, { field: :name, value: "" }]
209
237
  | `Mapping#computed(target, &block)` | Define a computed field derived from the full record |
210
238
  | `Mapping#array_field(target, from:, split:, &transform)` | Define a field that splits a string into an array |
211
239
  | `Mapping#map(hash)` | Apply mapping to a single hash |
240
+ | `Mapping#call(hash)` | Alias for `#map` — lets a `Mapping` be used as a callable |
241
+ | `Mapping#to_proc` | Return a `Proc` that calls `#map`, usable with `array.map(&mapping)` |
212
242
  | `Mapping#map_with_validation(hash)` | Apply mapping and return a `MappingResult` with errors |
213
243
  | `Mapping#map_all(array)` | Apply mapping to an array of hashes |
244
+ | `Mapping#map_lazy(enumerable)` | Return a `Lazy` Enumerator applying `#map` per-element for streaming |
214
245
  | `Mapping#field_names` | Array of symbol targets for declared fields and computed fields |
215
246
  | `Mapping#reverse(hash)` | Transform output hash back to input schema |
216
247
  | `Mapping#from_csv(string, headers: true)` | Parse CSV and map each row |
@@ -44,6 +44,26 @@ module Philiprehberger
44
44
  array.map { |hash| map(hash) }
45
45
  end
46
46
 
47
+ def map_lazy(enumerable)
48
+ enumerable.lazy.map { |hash| map(hash) }
49
+ end
50
+
51
+ # Proc conversion so a `Mapping` can be passed wherever a callable is expected
52
+ # (e.g. `rows.map(&mapping)`).
53
+ #
54
+ # @return [Proc] a proc that calls `#map` on its argument
55
+ def to_proc
56
+ method(:map).to_proc
57
+ end
58
+
59
+ # Alias of `#map` so a Mapping instance can be invoked like a function.
60
+ #
61
+ # @param hash [Hash] the record to map
62
+ # @return [Hash]
63
+ def call(hash)
64
+ map(hash)
65
+ end
66
+
47
67
  # Names (targets) of every declared field, including computed fields.
48
68
  #
49
69
  # @return [Array<Symbol>]
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module DataMapper
5
- VERSION = '0.4.0'
5
+ VERSION = '0.6.0'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: philiprehberger-data_mapper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.6.0
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-04-15 00:00:00.000000000 Z
11
+ date: 2026-04-21 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: A zero-dependency Ruby gem for transforming data between formats with
14
14
  a mapping DSL, field renaming, type conversion, validation, and CSV support.