philiprehberger-assert 0.1.2 → 0.1.6

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: 6bbbad776e762559f8426ec0fa6a42cc103b95579988e10167147942216e9e8f
4
- data.tar.gz: 619884d3a43ad9346ac735fb78270f7cb0df8e13bf98d95ffa5d3aa61a8d6f84
3
+ metadata.gz: b5cb9fcb058e0fce9fe13f23083588338316395f5e402c25c5912b0d97054643
4
+ data.tar.gz: 1c421231c04c70ff1a0821cc0b5a440c5de480aa898086aec7b12bbec0d185a2
5
5
  SHA512:
6
- metadata.gz: 1e7942880223d95278e3fe3e825ec1ec9cfa5b1baeb5b8dcb713c95454d02b4d5f5e932f53e37905869d78a7a10eecb278b2b776d0c663c500a431b9d13e0206
7
- data.tar.gz: a4b83d3c75eece1cccf92bfae4a0a1ea0d914f3f419660ff34d2926b423541632069530c375e69b884222fd678914b84d3a07c484d89f994733e9bdbafaf2cdd
6
+ metadata.gz: 4d6795f77c2cd6039d81af7efa1d5b69d7a795831fc228852ca1463d0477d858296d32d11c395506e41036a41709ec5e27e90824349f66c59510315b1efa125d
7
+ data.tar.gz: 55ab3c35e33ec7e5426ae23a28b20b8ad3573edad7cddef59be75f6c4917604f7dd15a8bcf7919c45421d542d3a6462377b74fdd62f2a82d2bf0286c8d761a70
data/CHANGELOG.md CHANGED
@@ -1,10 +1,5 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.2
4
-
5
- - Add License badge to README
6
- - Add bug_tracker_uri to gemspec
7
-
8
3
  All notable changes to this gem will be documented in this file.
9
4
 
10
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
@@ -12,6 +7,34 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
12
7
 
13
8
  ## [Unreleased]
14
9
 
10
+ ## [0.1.6] - 2026-03-22
11
+
12
+ ### Added
13
+ - Expanded test suite from 20 to 30+ examples covering all matcher types, chainable assertions, soft mode, custom messages, error classes, and boundary conditions
14
+
15
+ ## [0.1.5] - 2026-03-21
16
+
17
+ ### Fixed
18
+ - Standardize Installation section in README
19
+
20
+ ## [0.1.4] - 2026-03-18
21
+
22
+ ### Changed
23
+ - Revert gemspec to single-quoted strings per RuboCop default configuration
24
+
25
+ ## [0.1.3] - 2026-03-18
26
+
27
+ ### Fixed
28
+ - Fix RuboCop Style/StringLiterals violations in gemspec
29
+
30
+ ## [0.1.2] - 2026-03-16
31
+
32
+ ### Changed
33
+ - Add License badge to README
34
+ - Add bug_tracker_uri to gemspec
35
+
36
+ ## [0.1.1] - 2026-03-15
37
+
15
38
  ## [0.1.0] - 2026-03-15
16
39
 
17
40
  ### Added
data/README.md CHANGED
@@ -15,13 +15,7 @@ Standalone runtime assertion library with chainable matchers for Ruby.
15
15
  Add to your Gemfile:
16
16
 
17
17
  ```ruby
18
- gem 'philiprehberger-assert'
19
- ```
20
-
21
- Then run:
22
-
23
- ```bash
24
- bundle install
18
+ gem "philiprehberger-assert"
25
19
  ```
26
20
 
27
21
  Or install directly:
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module Assert
5
- VERSION = '0.1.2'
5
+ VERSION = '0.1.6'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: philiprehberger-assert
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.6
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-16 00:00:00.000000000 Z
11
+ date: 2026-03-22 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: A lightweight runtime assertion library for Ruby with chainable matchers,
14
14
  soft assertions, and Design by Contract preconditions.