philiprehberger-rule_engine 0.2.0 → 0.2.1
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 +5 -0
- data/README.md +15 -8
- data/lib/philiprehberger/rule_engine/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: 6f9262600c2b5adefbd5f73154f136518a003284d78e18289b90b95517becf6b
|
|
4
|
+
data.tar.gz: d89dfe2d39727cbf6b41bf2479b19863d9d1027a313afa3ee1fc1473fe96817d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 25752056acd892fac736ef5862b2d7b242418df52dcaa8e7174f19745f0a0557ffafc8db8f4b6ea1101db8a079849688481096d6e6ba0e871916da2801b47e13
|
|
7
|
+
data.tar.gz: 622c75faa7b5d4905fd89eab451a1efcf0b2fc9ad07612212af7d3693c1ced02b0c229f92409e78df4d5ac87ba4f0cd294b0f785bd29011b98e6ff591abe74c3
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.2.1] - 2026-03-31
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- Standardize README badges, support section, and license format
|
|
14
|
+
|
|
10
15
|
## [0.2.0] - 2026-03-28
|
|
11
16
|
|
|
12
17
|
### Added
|
data/README.md
CHANGED
|
@@ -2,12 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/philiprehberger/rb-rule-engine/actions/workflows/ci.yml)
|
|
4
4
|
[](https://rubygems.org/gems/philiprehberger-rule_engine)
|
|
5
|
-
[](https://github.com/philiprehberger/rb-rule-engine/releases)
|
|
6
5
|
[](https://github.com/philiprehberger/rb-rule-engine/commits/main)
|
|
7
|
-
[](LICENSE)
|
|
8
|
-
[](https://github.com/philiprehberger/rb-rule-engine/issues?q=is%3Aissue+is%3Aopen+label%3Abug)
|
|
9
|
-
[](https://github.com/philiprehberger/rb-rule-engine/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement)
|
|
10
|
-
[](https://github.com/sponsors/philiprehberger)
|
|
11
6
|
|
|
12
7
|
Lightweight rule engine with declarative conditions and actions
|
|
13
8
|
|
|
@@ -230,9 +225,21 @@ bundle exec rubocop
|
|
|
230
225
|
|
|
231
226
|
## Support
|
|
232
227
|
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
228
|
+
If you find this project useful:
|
|
229
|
+
|
|
230
|
+
⭐ [Star the repo](https://github.com/philiprehberger/rb-rule-engine)
|
|
231
|
+
|
|
232
|
+
🐛 [Report issues](https://github.com/philiprehberger/rb-rule-engine/issues?q=is%3Aissue+is%3Aopen+label%3Abug)
|
|
233
|
+
|
|
234
|
+
💡 [Suggest features](https://github.com/philiprehberger/rb-rule-engine/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement)
|
|
235
|
+
|
|
236
|
+
❤️ [Sponsor development](https://github.com/sponsors/philiprehberger)
|
|
237
|
+
|
|
238
|
+
🌐 [All Open Source Projects](https://philiprehberger.com/open-source-packages)
|
|
239
|
+
|
|
240
|
+
💻 [GitHub Profile](https://github.com/philiprehberger)
|
|
241
|
+
|
|
242
|
+
🔗 [LinkedIn Profile](https://www.linkedin.com/in/philiprehberger)
|
|
236
243
|
|
|
237
244
|
## License
|
|
238
245
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: philiprehberger-rule_engine
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
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-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: A lightweight rule engine with a declarative DSL for defining conditions
|
|
14
14
|
and actions. Supports priority-based ordering, first-match and all-match evaluation
|