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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 733532dbc2fd5c16c4067433a3c09f73a293691bc83e2977abeb5058194cb27b
4
- data.tar.gz: edb9db9094b27203b7b3b395d0766cd9526c1996ee0943ea190b2253d001d8a5
3
+ metadata.gz: ee1643e7d20a55c270909711e1427d32e54d9bff3baa3405327a46d415432543
4
+ data.tar.gz: 4549b18b857c1617ea1f93f42dbb5635723e9c27d54c43d24efe01aa3d0eb04e
5
5
  SHA512:
6
- metadata.gz: f75f4ed87fdee1160d66dd3e8101a8553c4ec37f6b3a88e450b52492430725744b98f721995a7bb4b0a5cd9423170eae691cc5407648bf9ab7e7039b516b23ca
7
- data.tar.gz: 5f53956dd0beecf8dc0a3ba191f70e7e11f17347b6224be58330753b7f61abcb9eb7f589a6b905ffc3aacfad5d65932a8a89f631c36fe7ff60d51c158505b672
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-14
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
  [![Gem Version](https://badge.fury.io/rb/philiprehberger-data_mapper.svg)](https://rubygems.org/gems/philiprehberger-data_mapper)
5
5
  [![License](https://img.shields.io/github/license/philiprehberger/rb-data-mapper)](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
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module DataMapper
5
- VERSION = "0.3.0"
5
+ VERSION = "0.3.1"
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.3.0
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-17 00:00:00.000000000 Z
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: []