philiprehberger-env_validator 0.2.2 → 0.2.4

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: c96163286793896c1f5acce7db79b0e4b903d04ba0ea0b629d7b05cd662c6708
4
- data.tar.gz: 661a967b3b3f0848d2cac59979340b2dfce4cd91ce879c0b131306c004966e0a
3
+ metadata.gz: 8eb7e42b409a64be8275668f04df6bef5bdc34f55645e36aa25ff4602fd9a495
4
+ data.tar.gz: 41ac32c372a0351ac7e561d92cf403e66c77fbef35dc51ac3e02b0cc46770484
5
5
  SHA512:
6
- metadata.gz: 5c37d0b1a0a840fb528fb2f99189df0065936973bb3f7c1b19a9e602c818fd66c681ee7ce151dc4fddf096a1103b1c13fc6accd0f5f79d1789ae6da349439008
7
- data.tar.gz: 7e47c358dc167c5f678adbda8ee2e410164dd8d92a3a6315ba237d07b7e28fc9799daa4c8557559b4300c5cd637cc8db4bd6926a4a87c134e7eb3e2517e9b8cc
6
+ metadata.gz: 92d2e74ed91b245151b65a061aa3d0a10a89a798b1058affbd8de594ef2e2a693c24035ce28ad0b4118fdabb41e2bdad77979aa2d3a5db6b62aa9d812b874d6a
7
+ data.tar.gz: df4fbcdc05a9ff368162dee52d8fda3b13b760440aaa003d6d1fd3042020723ea89c668e488b5f07618293316962680a914acae2be4c350d516b255b5aa39333
data/CHANGELOG.md CHANGED
@@ -6,7 +6,18 @@ 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.2.2] - 2026-03-22
9
+
10
+ ## [0.2.4] - 2026-03-24
11
+
12
+ ### Fixed
13
+ - Remove inline comments from Development section to match template
14
+
15
+ ## [0.2.3] - 2026-03-22
16
+
17
+ ### Added
18
+ - Expand test coverage to 30+ examples with edge cases for float casting, boolean case insensitivity, multiple errors, optional vars, default precedence, required with default
19
+
20
+ ## [0.2.2] - 2026-03-22
10
21
 
11
22
  ### Changed
12
23
  - Update rubocop configuration for Windows compatibility
data/README.md CHANGED
@@ -118,8 +118,8 @@ end
118
118
 
119
119
  ```bash
120
120
  bundle install
121
- bundle exec rspec # Run tests
122
- bundle exec rubocop # Check code style
121
+ bundle exec rspec
122
+ bundle exec rubocop
123
123
  ```
124
124
 
125
125
  ## License
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module EnvValidator
5
- VERSION = "0.2.2"
5
+ VERSION = "0.2.4"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: philiprehberger-env_validator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.4
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 environment variable schemas with type casting, required/optional
14
14
  flags, and defaults. Validates at boot time and provides typed accessors.