philiprehberger-enum 0.1.3 → 0.1.5
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 +11 -0
- data/README.md +20 -2
- data/lib/philiprehberger/enum/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: 5765112f2fd16bde7ed19854cf3e60b11826676cc2f9745d55e538ee05b1d07f
|
|
4
|
+
data.tar.gz: '0915d0457694b6de70cf61ff2193c30f21a408278a46613926e3c22ab830b61c'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1ae93ae4f8bbeae4dcf07e1dbf1685317bab80c288256cacbebf582baa8d6baa7f5ca4fd8d51c32240b9a60ea01a046176aeee374013516882cbbd76af42108b
|
|
7
|
+
data.tar.gz: 6ee8b1f10e6941d0d6c4d5ad56fe46f4d3b6d307842bd9bab85a352ddaa7a8fc29d38adf731cec8df4c69ba37c86958e5bccdbf2b493f4fed5303553fafddc47
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.5] - 2026-03-31
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- Standardize README badges, support section, and license format
|
|
14
|
+
|
|
15
|
+
## [0.1.4] - 2026-03-26
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
- Add Sponsor badge to README
|
|
19
|
+
- Fix license section link format
|
|
20
|
+
|
|
10
21
|
## [0.1.3] - 2026-03-24
|
|
11
22
|
|
|
12
23
|
### Fixed
|
data/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/philiprehberger/rb-enum/actions/workflows/ci.yml)
|
|
4
4
|
[](https://rubygems.org/gems/philiprehberger-enum)
|
|
5
|
-
[](https://github.com/philiprehberger/rb-enum/commits/main)
|
|
6
6
|
|
|
7
7
|
Type-safe enumerations with ordinals, custom values, and pattern matching
|
|
8
8
|
|
|
@@ -117,6 +117,24 @@ bundle exec rspec
|
|
|
117
117
|
bundle exec rubocop
|
|
118
118
|
```
|
|
119
119
|
|
|
120
|
+
## Support
|
|
121
|
+
|
|
122
|
+
If you find this project useful:
|
|
123
|
+
|
|
124
|
+
⭐ [Star the repo](https://github.com/philiprehberger/rb-enum)
|
|
125
|
+
|
|
126
|
+
🐛 [Report issues](https://github.com/philiprehberger/rb-enum/issues?q=is%3Aissue+is%3Aopen+label%3Abug)
|
|
127
|
+
|
|
128
|
+
💡 [Suggest features](https://github.com/philiprehberger/rb-enum/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement)
|
|
129
|
+
|
|
130
|
+
❤️ [Sponsor development](https://github.com/sponsors/philiprehberger)
|
|
131
|
+
|
|
132
|
+
🌐 [All Open Source Projects](https://philiprehberger.com/open-source-packages)
|
|
133
|
+
|
|
134
|
+
💻 [GitHub Profile](https://github.com/philiprehberger)
|
|
135
|
+
|
|
136
|
+
🔗 [LinkedIn Profile](https://www.linkedin.com/in/philiprehberger)
|
|
137
|
+
|
|
120
138
|
## License
|
|
121
139
|
|
|
122
|
-
MIT
|
|
140
|
+
[MIT](LICENSE)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: philiprehberger-enum
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
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: Define type-safe enums in Ruby with automatic ordinals, custom values,
|
|
14
14
|
lookup methods, and Ruby 3.x pattern matching support. A cleaner alternative to
|