philiprehberger-differ 0.2.0 → 0.2.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 +4 -4
- data/CHANGELOG.md +20 -3
- data/README.md +6 -4
- data/lib/philiprehberger/differ/version.rb +1 -1
- metadata +6 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6f31f366923b23b8d6142309952c56d3e97103a49bb89fea257c525f0e1e1aca
|
|
4
|
+
data.tar.gz: d3b6aab2411555a81399114b11d02704835a4de12e2cea197f529dc61965243a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1c2fb770069a51de724e2e4cce57872e811bc676ab0e8fc04da214c6ea1391ddeabbf025b18d78d75eb06ba010a0a2fba8991060c082f64de1fbf42690398167
|
|
7
|
+
data.tar.gz: 07e91805eabe8d84e6813c162aecae1d67d666e4d6a7eff9e4508841e8ade4fcc4bb73579db0eec896ab8ba6d0694f72ef0af70cb35bb0e66915c93de7b6a232
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,24 @@ All notable changes to this gem will be documented in this file.
|
|
|
5
5
|
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
|
+
## [Unreleased]
|
|
9
|
+
|
|
10
|
+
## [0.2.3] - 2026-03-24
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Fix Installation section quote style to double quotes
|
|
14
|
+
- Remove inline comments from Development section to match template
|
|
15
|
+
|
|
16
|
+
## [0.2.2] - 2026-03-18
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- Revert gemspec to single-quoted strings per RuboCop default configuration
|
|
20
|
+
|
|
21
|
+
## [0.2.1] - 2026-03-18
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
- Fix RuboCop Style/StringLiterals violations in gemspec
|
|
25
|
+
|
|
8
26
|
## [0.2.0] - 2026-03-17
|
|
9
27
|
|
|
10
28
|
### Added
|
|
@@ -14,14 +32,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
14
32
|
- JSON Patch formatter: `changeset.to_json_patch` for RFC 6902 operations
|
|
15
33
|
- Nested array diff by key: `Differ.diff(a, b, array_key: :id)` matches elements by field
|
|
16
34
|
|
|
17
|
-
## [0.1.2]
|
|
35
|
+
## [0.1.2] - 2026-03-16
|
|
18
36
|
|
|
37
|
+
### Changed
|
|
19
38
|
- Add License badge to README
|
|
20
39
|
- Add bug_tracker_uri to gemspec
|
|
21
40
|
- Add Requirements section to README
|
|
22
41
|
|
|
23
|
-
## [Unreleased]
|
|
24
|
-
|
|
25
42
|
## [0.1.0] - 2026-03-15
|
|
26
43
|
|
|
27
44
|
### Added
|
data/README.md
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
# philiprehberger-differ
|
|
2
2
|
|
|
3
|
+
[](https://github.com/philiprehberger/rb-differ/actions/workflows/ci.yml)
|
|
3
4
|
[](https://rubygems.org/gems/philiprehberger-differ)
|
|
4
5
|
[](LICENSE)
|
|
5
6
|
|
|
6
|
-
Deep structural diff for hashes, arrays, and nested objects in Ruby
|
|
7
|
+
Deep structural diff for hashes, arrays, and nested objects in Ruby
|
|
7
8
|
|
|
8
9
|
## Requirements
|
|
9
10
|
|
|
@@ -14,12 +15,12 @@ Deep structural diff for hashes, arrays, and nested objects in Ruby.
|
|
|
14
15
|
Add to your Gemfile:
|
|
15
16
|
|
|
16
17
|
```ruby
|
|
17
|
-
gem
|
|
18
|
+
gem "philiprehberger-differ"
|
|
18
19
|
```
|
|
19
20
|
|
|
20
21
|
Or install directly:
|
|
21
22
|
|
|
22
|
-
```
|
|
23
|
+
```bash
|
|
23
24
|
gem install philiprehberger-differ
|
|
24
25
|
```
|
|
25
26
|
|
|
@@ -153,9 +154,10 @@ Returns a Float between 0.0 (completely different) and 1.0 (identical).
|
|
|
153
154
|
|
|
154
155
|
## Development
|
|
155
156
|
|
|
156
|
-
```
|
|
157
|
+
```bash
|
|
157
158
|
bundle install
|
|
158
159
|
bundle exec rspec
|
|
160
|
+
bundle exec rubocop
|
|
159
161
|
```
|
|
160
162
|
|
|
161
163
|
## License
|
metadata
CHANGED
|
@@ -1,18 +1,20 @@
|
|
|
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.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-
|
|
11
|
+
date: 2026-03-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
|
-
description:
|
|
13
|
+
description: A Ruby library for deep structural diffing of hashes, arrays, and nested
|
|
14
|
+
objects with apply/revert, JSON Patch output, similarity scoring, and configurable
|
|
15
|
+
ignore paths.
|
|
14
16
|
email:
|
|
15
|
-
- philiprehberger
|
|
17
|
+
- me@philiprehberger.com
|
|
16
18
|
executables: []
|
|
17
19
|
extensions: []
|
|
18
20
|
extra_rdoc_files: []
|