philiprehberger-data_mapper 0.3.0 → 0.3.1
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 +5 -1
- data/README.md +1 -7
- data/lib/philiprehberger/data_mapper/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ee1643e7d20a55c270909711e1427d32e54d9bff3baa3405327a46d415432543
|
|
4
|
+
data.tar.gz: 4549b18b857c1617ea1f93f42dbb5635723e9c27d54c43d24efe01aa3d0eb04e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6df2ccd74efe7f240f1dee1e0b4b773814a0248c77d1d7836f048fb04a864eaec9c85fd3878afe8c1c468d38ef748d1df03189f67823c9eff7a1dd5fd12b8263
|
|
7
|
+
data.tar.gz: 01c75fccffabb8702ed3dc2a6ccc7793067c720ba267adc817068bce34fe5d4dc14ea54f593b50aeaf90b160e555f12f9f081921d1210a24d9a979b05e8b30fc
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
|
+
n## [0.3.1] - 2026-03-22
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
- Update rubocop configuration for Windows compatibility
|
|
9
13
|
|
|
10
14
|
## [0.3.0] - 2026-03-17
|
|
11
15
|
|
|
@@ -17,7 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
17
21
|
- Validation support with `validate:` parameter and `map_with_validation` method
|
|
18
22
|
- `MappingResult` class wrapping mapped value and collected validation errors
|
|
19
23
|
|
|
20
|
-
## [0.2.1] - 2026-03-
|
|
24
|
+
## [0.2.1] - 2026-03-16
|
|
21
25
|
|
|
22
26
|
### Changed
|
|
23
27
|
- Add License badge to README
|
data/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
[](https://rubygems.org/gems/philiprehberger-data_mapper)
|
|
5
5
|
[](LICENSE)
|
|
6
6
|
|
|
7
|
-
Data transformation DSL for mapping hashes and CSV rows in Ruby
|
|
7
|
+
Data transformation DSL for mapping hashes and CSV rows in Ruby
|
|
8
8
|
|
|
9
9
|
## Requirements
|
|
10
10
|
|
|
@@ -18,12 +18,6 @@ Add to your Gemfile:
|
|
|
18
18
|
gem "philiprehberger-data_mapper"
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
-
Then run:
|
|
22
|
-
|
|
23
|
-
```bash
|
|
24
|
-
bundle install
|
|
25
|
-
```
|
|
26
|
-
|
|
27
21
|
Or install directly:
|
|
28
22
|
|
|
29
23
|
```bash
|
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.3.
|
|
4
|
+
version: 0.3.1
|
|
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-22 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.
|
|
@@ -36,6 +36,7 @@ metadata:
|
|
|
36
36
|
homepage_uri: https://github.com/philiprehberger/rb-data-mapper
|
|
37
37
|
source_code_uri: https://github.com/philiprehberger/rb-data-mapper
|
|
38
38
|
changelog_uri: https://github.com/philiprehberger/rb-data-mapper/blob/main/CHANGELOG.md
|
|
39
|
+
bug_tracker_uri: https://github.com/philiprehberger/rb-data-mapper/issues
|
|
39
40
|
rubygems_mfa_required: 'true'
|
|
40
41
|
post_install_message:
|
|
41
42
|
rdoc_options: []
|