philiprehberger-enum 0.1.0 → 0.1.2

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: 1c57d423a66fad422a2a57e996e53a2b0bcf32e11de057e0dc0eeeac2dde3a4f
4
- data.tar.gz: 6c9121f4a1be73222f09a58df5d42b305f75a47eb6d662bac79c30648010c568
3
+ metadata.gz: 2e5936f6db74ef4ba3f40cacab23e78f62ce6dd93db8cca69fbfbc48d586e4da
4
+ data.tar.gz: b5990ac06b61b2259a576d36f654d6ada3a599bf7fa5a96e29f4474e0f28f04d
5
5
  SHA512:
6
- metadata.gz: b205fdb4a98c0188db035118d32f8d7d95a56fbf8dc3638317dfeeb56e1cb77fa36e02b02573f937d8aeba84a4eedf2bd6659b67ccc7226f56d7c3a89cf02835
7
- data.tar.gz: 9b838f375c6141ce9a2ab3d4fc3bb1482da6c2b17b08eda07b639641072714a66aa85ee09503a39c54110ef508fecb4dcf8da10894dffed18687f4dc7daa5a37
6
+ metadata.gz: b215a08b7b216ab9740fadd91206c42b2c24622b92c9d2083862b6f00d21fdc12e91d7e0390c0cbbd4cd1ff3626150ce199708f796df74f946633de5423908f7
7
+ data.tar.gz: ac8c95941ebd1d105dc8d5e067a2fca96904939627d54447dae80d78ae8ad20c1c0508eb8b7f36c675791d8759ef4307aaab20f1da4edcb216fd32ba4c23bc02
data/CHANGELOG.md CHANGED
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.2] - 2026-03-24
11
+
12
+ ### Fixed
13
+ - Fix Installation section quote style to double quotes
14
+
15
+ ## [0.1.1] - 2026-03-22
16
+
17
+ ### Changed
18
+ - Improve source code, tests, and rubocop compliance
19
+
10
20
  ## [0.1.0] - 2026-03-21
11
21
 
12
22
  ### Added
data/README.md CHANGED
@@ -15,7 +15,7 @@ Type-safe enumerations with ordinals, custom values, and pattern matching
15
15
  Add to your Gemfile:
16
16
 
17
17
  ```ruby
18
- gem 'philiprehberger-enum'
18
+ gem "philiprehberger-enum"
19
19
  ```
20
20
 
21
21
  Or install directly:
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  class Enum
5
- VERSION = '0.1.0'
5
+ VERSION = '0.1.2'
6
6
  end
7
7
  end
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.0
4
+ version: 0.1.2
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-22 00:00:00.000000000 Z
11
+ date: 2026-03-24 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