philiprehberger-differ 0.2.3 → 0.2.5
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 +10 -0
- data/README.md +2 -2
- data/lib/philiprehberger/differ/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 10b240fcc42098f505dc53d2c6396b9f2030ecb245696d0d6e8d4e1a65d3ff0b
|
|
4
|
+
data.tar.gz: 625c2ead4078d878811a0bf3e8a34970aefc27be02bdda6338a2c22d13dff721
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 044a76c7953733b889f806280adbcda40624d0ed158ea481bd5932852f02e210225142104d2a87d90f1d63e54b8d3b269ef30fdf8d916b020628ab5a063b57aa
|
|
7
|
+
data.tar.gz: fd3ed78b5866452242e8c66fddbcc4654887a738a0749b1d2e94307d45739cc7702ba4eff10cf03c7c3cf9c185188bd3662fef5db374133fa44df6ce0bfa7626
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.2.5] - 2026-03-24
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Align README one-liner with gemspec summary
|
|
14
|
+
|
|
15
|
+
## [0.2.4] - 2026-03-24
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
- Standardize README code examples to use double-quote require statements
|
|
19
|
+
|
|
10
20
|
## [0.2.3] - 2026-03-24
|
|
11
21
|
|
|
12
22
|
### Fixed
|
data/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
[](https://rubygems.org/gems/philiprehberger-differ)
|
|
5
5
|
[](LICENSE)
|
|
6
6
|
|
|
7
|
-
Deep structural diff for hashes, arrays, and nested objects
|
|
7
|
+
Deep structural diff for hashes, arrays, and nested objects
|
|
8
8
|
|
|
9
9
|
## Requirements
|
|
10
10
|
|
|
@@ -27,7 +27,7 @@ gem install philiprehberger-differ
|
|
|
27
27
|
## Usage
|
|
28
28
|
|
|
29
29
|
```ruby
|
|
30
|
-
require
|
|
30
|
+
require "philiprehberger/differ"
|
|
31
31
|
|
|
32
32
|
old_data = { name: 'Alice', age: 30, address: { city: 'Berlin' } }
|
|
33
33
|
new_data = { name: 'Alice', age: 31, address: { city: 'Vienna' }, email: 'alice@example.com' }
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: philiprehberger-differ
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.5
|
|
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-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: A Ruby library for deep structural diffing of hashes, arrays, and nested
|
|
14
14
|
objects with apply/revert, JSON Patch output, similarity scoring, and configurable
|