philiprehberger-differ 0.2.0 → 0.2.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 +4 -4
- data/CHANGELOG.md +8 -0
- 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: a2895233828f37deff74861ac0c8c0fb7b7f678c644aeda4b4db14344760c38e
|
|
4
|
+
data.tar.gz: c1ebbe193bce2b499bbb9ad91f29a74949180a69de143440becb5d26b15acaf6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7a4c3e61b19d56fcb837339e4789b38ee3a2cfc32000a98d6f7ab5dd1f09b8730d694431ccfdf8416a506f2f34cec2106825b9144979f06f481e589ef52629b7
|
|
7
|
+
data.tar.gz: 5ea7bea69ce7d9a0736cfda3fbd6034ecadb1b0d514908069a8ccc459064b7636fe47b16424739e6adc500f4222b106ab12d5da12c606887220c2e4f50004de1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.2
|
|
4
|
+
|
|
5
|
+
- Revert gemspec to single-quoted strings per RuboCop default configuration
|
|
6
|
+
|
|
7
|
+
## 0.2.1
|
|
8
|
+
|
|
9
|
+
- Fix RuboCop Style/StringLiterals violations in gemspec
|
|
10
|
+
|
|
3
11
|
All notable changes to this gem will be documented in this file.
|
|
4
12
|
|
|
5
13
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
data/README.md
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
# philiprehberger-differ
|
|
2
2
|
|
|
3
3
|
[](https://rubygems.org/gems/philiprehberger-differ)
|
|
4
|
+
[](https://github.com/philiprehberger/rb-differ/actions/workflows/ci.yml)
|
|
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
|
|
|
@@ -19,7 +20,7 @@ gem 'philiprehberger-differ'
|
|
|
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
|
-
bundle exec rspec
|
|
159
|
+
bundle exec rspec # Run tests
|
|
160
|
+
bundle exec rubocop # Check code style
|
|
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.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-
|
|
11
|
+
date: 2026-03-19 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: []
|