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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: be3438fd21e7f26548ccf9052163ac43a8a41231f95e772830d1311f4d9fbd9b
4
- data.tar.gz: c8bb69a3e019c8ea86204a09011070bb813ef03491f7f5bb95e3a381909687b5
3
+ metadata.gz: 6f31f366923b23b8d6142309952c56d3e97103a49bb89fea257c525f0e1e1aca
4
+ data.tar.gz: d3b6aab2411555a81399114b11d02704835a4de12e2cea197f529dc61965243a
5
5
  SHA512:
6
- metadata.gz: '074148fad05b65128d63112b61383e9589f35560e8a3cb990b9689e432e68380b4f52a56052c31468763c88c130624ec1583fb984a4d14320c87eb56a8afdfe8'
7
- data.tar.gz: e2972dff73dc4dc4f2f3270e0537ce049885b7e003a793136fce6cb4ae6fa2c07ff0740f2bef7bbb4d5b9e3634b5baf6abb25a06edd8586e286c1f9f429b71da
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
+ [![Tests](https://github.com/philiprehberger/rb-differ/actions/workflows/ci.yml/badge.svg)](https://github.com/philiprehberger/rb-differ/actions/workflows/ci.yml)
3
4
  [![Gem Version](https://badge.fury.io/rb/philiprehberger-differ.svg)](https://rubygems.org/gems/philiprehberger-differ)
4
5
  [![License](https://img.shields.io/github/license/philiprehberger/rb-differ)](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 'philiprehberger-differ'
18
+ gem "philiprehberger-differ"
18
19
  ```
19
20
 
20
21
  Or install directly:
21
22
 
22
- ```sh
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
- ```sh
157
+ ```bash
157
158
  bundle install
158
159
  bundle exec rspec
160
+ bundle exec rubocop
159
161
  ```
160
162
 
161
163
  ## License
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module Differ
5
- VERSION = '0.2.0'
5
+ VERSION = '0.2.3'
6
6
  end
7
7
  end
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.0
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-17 00:00:00.000000000 Z
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@gmail.com
17
+ - me@philiprehberger.com
16
18
  executables: []
17
19
  extensions: []
18
20
  extra_rdoc_files: []