philiprehberger-assert 0.1.4 → 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 +4 -4
- data/CHANGELOG.md +24 -9
- data/README.md +1 -7
- data/lib/philiprehberger/assert/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b5cb9fcb058e0fce9fe13f23083588338316395f5e402c25c5912b0d97054643
|
|
4
|
+
data.tar.gz: 1c421231c04c70ff1a0821cc0b5a440c5de480aa898086aec7b12bbec0d185a2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4d6795f77c2cd6039d81af7efa1d5b69d7a795831fc228852ca1463d0477d858296d32d11c395506e41036a41709ec5e27e90824349f66c59510315b1efa125d
|
|
7
|
+
data.tar.gz: 55ab3c35e33ec7e5426ae23a28b20b8ad3573edad7cddef59be75f6c4917604f7dd15a8bcf7919c45421d542d3a6462377b74fdd62f2a82d2bf0286c8d761a70
|
data/CHANGELOG.md
CHANGED
|
@@ -1,24 +1,39 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
All notable changes to this gem will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [Unreleased]
|
|
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
|
|
4
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
|
|
5
23
|
- Revert gemspec to single-quoted strings per RuboCop default configuration
|
|
6
24
|
|
|
7
|
-
## 0.1.3
|
|
25
|
+
## [0.1.3] - 2026-03-18
|
|
8
26
|
|
|
27
|
+
### Fixed
|
|
9
28
|
- Fix RuboCop Style/StringLiterals violations in gemspec
|
|
10
29
|
|
|
11
|
-
## 0.1.2
|
|
30
|
+
## [0.1.2] - 2026-03-16
|
|
12
31
|
|
|
32
|
+
### Changed
|
|
13
33
|
- Add License badge to README
|
|
14
34
|
- Add bug_tracker_uri to gemspec
|
|
15
35
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
19
|
-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
20
|
-
|
|
21
|
-
## [Unreleased]
|
|
36
|
+
## [0.1.1] - 2026-03-15
|
|
22
37
|
|
|
23
38
|
## [0.1.0] - 2026-03-15
|
|
24
39
|
|
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
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
Then run:
|
|
22
|
-
|
|
23
|
-
```bash
|
|
24
|
-
bundle install
|
|
18
|
+
gem "philiprehberger-assert"
|
|
25
19
|
```
|
|
26
20
|
|
|
27
21
|
Or install directly:
|
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.
|
|
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-
|
|
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.
|