philiprehberger-assert 0.1.7 → 0.1.10

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: 661acaa55a357db30cd3ac19aee86574d34ff6bd761cb4e1ff661d5220276ac4
4
- data.tar.gz: fadd6f388e7f3f75098cfd2bcdb1da5082fb811466739fd009b7c2f679d4d45b
3
+ metadata.gz: 3a8c3df133728f3860fbab4d34515f62932c8189fa4bd41080e37fbb4fc0e4f2
4
+ data.tar.gz: 4a9c379ea5cf631099c94242c125ce072eb385204feeb38f5f2e7f4ca64a1698
5
5
  SHA512:
6
- metadata.gz: ecdccf7f3aaa2b4de07772027623e8ff34c6215ce92137de1274a0093e5916b975cd5d91f5cb879d253e4bd36c1887677d4e8e0cc2d7e1f781eaa5f37111d2d9
7
- data.tar.gz: 9d602ddbb31017927e4a5529a57c377a61f38d9d03e44e26a8c3c26f29ba57029c426c7d58988e23b1d640cb62e49950e8b66f29c80ebcd8dd7956d5be76aa1f
6
+ metadata.gz: 1b347aeb62c4abc70e551fcc5834c544567f1e8b34786ce0aa75395d022f0cd302b6756c4f4a6bac35e86bd2e2317f49969e1217869264c9cf84b8f395dfbea4
7
+ data.tar.gz: d24092ed6e37a3385eee03b8a00eb569e6e5eb76be8b66512a70d42437f9c76584402a87e236b358d3dc39152ebc73a672650c2924a0e339b5c3c5b50efc3286
data/CHANGELOG.md CHANGED
@@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.10] - 2026-03-31
11
+
12
+ ### Changed
13
+ - Standardize README badges, support section, and license format
14
+
15
+ ## [0.1.9] - 2026-03-26
16
+
17
+ ### Changed
18
+
19
+ - Add Sponsor badge and fix License link format in README
20
+
21
+ ## [0.1.8] - 2026-03-24
22
+
23
+ ### Fixed
24
+ - Fix README one-liner to remove trailing period and match gemspec summary
25
+
10
26
  ## [0.1.7] - 2026-03-24
11
27
 
12
28
  ### Fixed
data/README.md CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  [![Tests](https://github.com/philiprehberger/rb-assert/actions/workflows/ci.yml/badge.svg)](https://github.com/philiprehberger/rb-assert/actions/workflows/ci.yml)
4
4
  [![Gem Version](https://badge.fury.io/rb/philiprehberger-assert.svg)](https://rubygems.org/gems/philiprehberger-assert)
5
- [![License](https://img.shields.io/github/license/philiprehberger/rb-assert)](LICENSE)
5
+ [![Last updated](https://img.shields.io/github/last-commit/philiprehberger/rb-assert)](https://github.com/philiprehberger/rb-assert/commits/main)
6
6
 
7
- Standalone runtime assertion library with chainable matchers for Ruby.
7
+ Standalone runtime assertion library with chainable matchers
8
8
 
9
9
  ## Requirements
10
10
 
@@ -95,6 +95,24 @@ bundle exec rspec
95
95
  bundle exec rubocop
96
96
  ```
97
97
 
98
+ ## Support
99
+
100
+ If you find this project useful:
101
+
102
+ ⭐ [Star the repo](https://github.com/philiprehberger/rb-assert)
103
+
104
+ 🐛 [Report issues](https://github.com/philiprehberger/rb-assert/issues?q=is%3Aissue+is%3Aopen+label%3Abug)
105
+
106
+ 💡 [Suggest features](https://github.com/philiprehberger/rb-assert/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement)
107
+
108
+ ❤️ [Sponsor development](https://github.com/sponsors/philiprehberger)
109
+
110
+ 🌐 [All Open Source Projects](https://philiprehberger.com/open-source-packages)
111
+
112
+ 💻 [GitHub Profile](https://github.com/philiprehberger)
113
+
114
+ 🔗 [LinkedIn Profile](https://www.linkedin.com/in/philiprehberger)
115
+
98
116
  ## License
99
117
 
100
- MIT
118
+ [MIT](LICENSE)
@@ -10,7 +10,7 @@ module Philiprehberger
10
10
  @failures = failures
11
11
  end
12
12
 
13
- def is_a(type) # rubocop:disable Naming/PredicatePrefix
13
+ def is_a(type)
14
14
  check(@value.is_a?(type), "Expected #{@value.inspect} to be a #{type}")
15
15
  end
16
16
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module Assert
5
- VERSION = '0.1.7'
5
+ VERSION = '0.1.10'
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.7
4
+ version: 0.1.10
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-25 00:00:00.000000000 Z
11
+ date: 2026-03-31 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.