philiprehberger-enum 0.1.1 → 0.1.3

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: df4e5db60ac64df18ddd96fcaa949883bb4ee02db62cfeebfb2f80b8f28dae12
4
- data.tar.gz: b105f61a037d7d4774bd75e395ae6ddd0319d7cb64215ff14dfbcc299aa28966
3
+ metadata.gz: 9cecf9c19ba8da7908f89880caa3133e7a4d00b293a727c5f5ef46d62f24e9b3
4
+ data.tar.gz: 3e751afee38e918f9bf7372b318472c27f3e85b45649e91e998fba56ac572731
5
5
  SHA512:
6
- metadata.gz: ac132e13afefe0fc1f4c3c89227e7a15d1edb83cc468fa0710c6ff1969484cfcb67ae316cbe78441ca5b4224817f531a5ca619142e7c33b8f5d0373b6e709c15
7
- data.tar.gz: ec2f618582e465610304c19857770ebac37b874a0b94502fc20363c2e6120199711cf98a43a96d2f237f2be099caa88aa72df9e84eb57e90462e9fd70c2236df
6
+ metadata.gz: 7cde5e3645727acdbf29b891334107bb820e6e7f466bf0ec12ebdbf245b44bda8f3c2f2c00cf2e7a37d0cc8482150e3a2d2d4287f828ab1c433aa9b504c322dd
7
+ data.tar.gz: 8532661de5610adcd72681e0aa98a132b6368824d84ad52f8a01a8ca9ea065e657062fb25550104760589be38dff3855d52b3098f98b28afc75e60d89b85f82d
data/CHANGELOG.md CHANGED
@@ -6,7 +6,19 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
8
  ## [Unreleased]
9
- n## [0.1.1] - 2026-03-22
9
+
10
+ ## [0.1.3] - 2026-03-24
11
+
12
+ ### Fixed
13
+ - Standardize README code examples to use double-quote require statements
14
+ - Remove inline comments from Development section to match template
15
+
16
+ ## [0.1.2] - 2026-03-24
17
+
18
+ ### Fixed
19
+ - Fix Installation section quote style to double quotes
20
+
21
+ ## [0.1.1] - 2026-03-22
10
22
 
11
23
  ### Changed
12
24
  - Improve source code, tests, and rubocop compliance
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:
@@ -27,7 +27,7 @@ gem install philiprehberger-enum
27
27
  ## Usage
28
28
 
29
29
  ```ruby
30
- require 'philiprehberger/enum'
30
+ require "philiprehberger/enum"
31
31
 
32
32
  class Status < Philiprehberger::Enum
33
33
  member :draft
@@ -113,8 +113,8 @@ Status::DRAFT.to_json # => '{"name":"draft","ordinal":0,"value":null}'
113
113
 
114
114
  ```bash
115
115
  bundle install
116
- bundle exec rspec # Run tests
117
- bundle exec rubocop # Check code style
116
+ bundle exec rspec
117
+ bundle exec rubocop
118
118
  ```
119
119
 
120
120
  ## License
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  class Enum
5
- VERSION = '0.1.1'
5
+ VERSION = '0.1.3'
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.1
4
+ version: 0.1.3
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-25 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