philiprehberger-data_mapper 0.3.1 → 0.3.2

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: 3cbb445cade85792cab296453824c72b9b7e33bff66c805e1a9469a91307e499
4
+ data.tar.gz: c3142d7ec0d196233d51088112783e50ac3b3fa203e53e33a344843c545100d2
5
5
  SHA512:
6
- metadata.gz: 6df2ccd74efe7f240f1dee1e0b4b773814a0248c77d1d7836f048fb04a864eaec9c85fd3878afe8c1c468d38ef748d1df03189f67823c9eff7a1dd5fd12b8263
7
- data.tar.gz: 01c75fccffabb8702ed3dc2a6ccc7793067c720ba267adc817068bce34fe5d4dc14ea54f593b50aeaf90b160e555f12f9f081921d1210a24d9a979b05e8b30fc
6
+ metadata.gz: 52a4f9e3349d31c5faf89d9afdf7385ffd51b36e90d513c5358bd69404440437001232bd3852f0dfa11bd6440fb486cccc313b1c87e2b629ba3d5f41ff6b4375
7
+ data.tar.gz: 481194901252a0b15f00d6c4fc0fe979d963fcb323fed3e4fb08bcd9e4891e1f1e5bc31a431c26d614a377b6a04cff7f71a7c5f393298231977e9453b9d0d23d
data/CHANGELOG.md CHANGED
@@ -6,7 +6,13 @@ 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.2] - 2026-03-24
11
+
12
+ ### Fixed
13
+ - Remove inline comments from Development section to match template
14
+
15
+ ## [0.3.1] - 2026-03-22
10
16
 
11
17
  ### Changed
12
18
  - Update rubocop configuration for Windows compatibility
data/README.md CHANGED
@@ -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.2"
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.2
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.