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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: be3438fd21e7f26548ccf9052163ac43a8a41231f95e772830d1311f4d9fbd9b
4
- data.tar.gz: c8bb69a3e019c8ea86204a09011070bb813ef03491f7f5bb95e3a381909687b5
3
+ metadata.gz: a2895233828f37deff74861ac0c8c0fb7b7f678c644aeda4b4db14344760c38e
4
+ data.tar.gz: c1ebbe193bce2b499bbb9ad91f29a74949180a69de143440becb5d26b15acaf6
5
5
  SHA512:
6
- metadata.gz: '074148fad05b65128d63112b61383e9589f35560e8a3cb990b9689e432e68380b4f52a56052c31468763c88c130624ec1583fb984a4d14320c87eb56a8afdfe8'
7
- data.tar.gz: e2972dff73dc4dc4f2f3270e0537ce049885b7e003a793136fce6cb4ae6fa2c07ff0740f2bef7bbb4d5b9e3634b5baf6abb25a06edd8586e286c1f9f429b71da
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
  [![Gem Version](https://badge.fury.io/rb/philiprehberger-differ.svg)](https://rubygems.org/gems/philiprehberger-differ)
4
+ [![Tests](https://github.com/philiprehberger/rb-differ/actions/workflows/ci.yml/badge.svg)](https://github.com/philiprehberger/rb-differ/actions/workflows/ci.yml)
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
 
@@ -19,7 +20,7 @@ gem 'philiprehberger-differ'
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
- bundle exec rspec
159
+ bundle exec rspec # Run tests
160
+ bundle exec rubocop # Check code style
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.2'
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.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-17 00:00:00.000000000 Z
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@gmail.com
17
+ - me@philiprehberger.com
16
18
  executables: []
17
19
  extensions: []
18
20
  extra_rdoc_files: []