philiprehberger-data_mapper 0.3.1 → 0.3.3

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: ee1643e7d20a55c270909711e1427d32e54d9bff3baa3405327a46d415432543
4
- data.tar.gz: 4549b18b857c1617ea1f93f42dbb5635723e9c27d54c43d24efe01aa3d0eb04e
3
+ metadata.gz: c9a6ea78fb65d2e0ccc525ed00f972c1f33eee27b4e23c5466d67404ede5619c
4
+ data.tar.gz: 23036151c8a6e1dc201f6afe4f49564145b09da3b7deb1cb89f7094561d26987
5
5
  SHA512:
6
- metadata.gz: 6df2ccd74efe7f240f1dee1e0b4b773814a0248c77d1d7836f048fb04a864eaec9c85fd3878afe8c1c468d38ef748d1df03189f67823c9eff7a1dd5fd12b8263
7
- data.tar.gz: 01c75fccffabb8702ed3dc2a6ccc7793067c720ba267adc817068bce34fe5d4dc14ea54f593b50aeaf90b160e555f12f9f081921d1210a24d9a979b05e8b30fc
6
+ metadata.gz: efd9f9f777b1e625253494a0e474806c8e61e5089c6e0cebaffdb6e8e6e452b47b9256354c2763e32496855a7cfa649e5ac0e66e82326a7d26a4001a1371d996
7
+ data.tar.gz: 19e9fbbc68e33b6eae597c8c92a12eaaf1d55a2606eba269ae971e93e4ff07fa3a45b08afc4361ac908dc99c021158a6113b462ca2b10428c9229b4414b9e343
data/CHANGELOG.md CHANGED
@@ -6,7 +6,18 @@ 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
9
+
10
+ ## [0.3.3] - 2026-03-24
11
+
12
+ ### Fixed
13
+ - Align README one-liner with gemspec summary
14
+
15
+ ## [0.3.2] - 2026-03-24
16
+
17
+ ### Fixed
18
+ - Remove inline comments from Development section to match template
19
+
20
+ ## [0.3.1] - 2026-03-22
10
21
 
11
22
  ### Changed
12
23
  - Update rubocop configuration for Windows compatibility
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
8
8
 
9
9
  ## Requirements
10
10
 
@@ -209,8 +209,8 @@ result.errors # => [{ field: :age, value: -1 }, { field: :name, value: "" }]
209
209
 
210
210
  ```bash
211
211
  bundle install
212
- bundle exec rspec # Run tests
213
- bundle exec rubocop # Check code style
212
+ bundle exec rspec
213
+ bundle exec rubocop
214
214
  ```
215
215
 
216
216
  ## License
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module DataMapper
5
- VERSION = "0.3.1"
5
+ VERSION = "0.3.3"
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.1
4
+ version: 0.3.3
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-22 00:00:00.000000000 Z
11
+ date: 2026-03-25 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.