const_conf 0.4.1 → 0.4.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: 838d16cd222d34008feff819630c30fe53275d7a4803ef63a998c0688d3b183c
4
- data.tar.gz: b63b181fa533678a980a230905ebdf1b56d3aaaf2a943c80d8e20766eb6d9b13
3
+ metadata.gz: 9cc85b090b12ae171232e854cc5326c6ffd5a2872a9126148b697af6d98ae697
4
+ data.tar.gz: 3fcf5db7f32b8628b9eec438980d66c348ba34eab3afaf1de692d0a27620b72d
5
5
  SHA512:
6
- metadata.gz: 04a57e5f48ace4ccf5a148f035cb239cdc5abdc1f9103073b62b2b2f1badd3a10b2adc706023815eb6879006439c4e94eb64e7f5cbf66df5c71f55567de3e707
7
- data.tar.gz: 015f731fc41e652dc51530f8ba482d58ce4a498ec603b8296e6137e5e5a89f40aefc35abe255437b43219d5aae73b656f8d6cb3f18562f8fe43cfe4ef72a00ac
6
+ metadata.gz: 1a40c7fda5828a6e2e26621fa1388742463410fdff1c4f97665bce88d0d13975c1798c0b7d1e9b50373d2915d880b48a3f9d22b45910589ed1476ae5e2e920d6
7
+ data.tar.gz: 5514b159ea1e3c492f4f4cd3f8105b41f0d25816a4010366de2a4f82de149b16e9b0794035690eb2baa6410968b729fad492d9a482e67af30d6d3f4222a01e5a
data/CHANGES.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changes
2
2
 
3
+ ## 2025-10-29 v0.4.2
4
+
5
+ - Added `require 'pathname'` to include the Pathname library
6
+ - Enables path manipulation functionality in the constant configuration
7
+
3
8
  ## 2025-10-15 v0.4.1
4
9
 
5
10
  - Added `.github/workflows/static.yml` to deploy static content to GitHub Pages
data/const_conf.gemspec CHANGED
@@ -1,9 +1,9 @@
1
1
  # -*- encoding: utf-8 -*-
2
- # stub: const_conf 0.4.1 ruby lib
2
+ # stub: const_conf 0.4.3 ruby lib
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "const_conf".freeze
6
- s.version = "0.4.1".freeze
6
+ s.version = "0.4.3".freeze
7
7
 
8
8
  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
9
9
  s.require_paths = ["lib".freeze]
@@ -17,7 +17,7 @@ Gem::Specification.new do |s|
17
17
  s.licenses = ["MIT".freeze]
18
18
  s.rdoc_options = ["--title".freeze, "ConstConf - Clean DSL for config settings with validation and Rails integration".freeze, "--main".freeze, "README.md".freeze]
19
19
  s.required_ruby_version = Gem::Requirement.new("~> 3.2".freeze)
20
- s.rubygems_version = "3.6.9".freeze
20
+ s.rubygems_version = "3.7.2".freeze
21
21
  s.summary = "Clean DSL for config settings with validation and Rails integration".freeze
22
22
  s.test_files = ["spec/const_conf/dir_plugin_spec.rb".freeze, "spec/const_conf/env_dir_extension_spec.rb".freeze, "spec/const_conf/file_plugin_spec.rb".freeze, "spec/const_conf/json_plugin_spec.rb".freeze, "spec/const_conf/setting_accessor_spec.rb".freeze, "spec/const_conf/setting_spec.rb".freeze, "spec/const_conf/tree_spec.rb".freeze, "spec/const_conf/yaml_plugin_spec.rb".freeze, "spec/const_conf_spec.rb".freeze, "spec/spec_helper.rb".freeze]
23
23
 
@@ -1,6 +1,6 @@
1
1
  module ConstConf
2
2
  # ConstConf version
3
- VERSION = '0.4.1'
3
+ VERSION = '0.4.3'
4
4
  VERSION_ARRAY = VERSION.split('.').map(&:to_i) # :nodoc:
5
5
  VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
6
6
  VERSION_MINOR = VERSION_ARRAY[1] # :nodoc:
data/lib/const_conf.rb CHANGED
@@ -1,4 +1,6 @@
1
+ require 'pathname'
1
2
  require 'tins/xt'
3
+ require 'term/ansicolor'
2
4
  require 'active_support/all'
3
5
 
4
6
  # A configuration management module that provides environment variable-based
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: const_conf
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Florian Frank
@@ -229,7 +229,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
229
229
  - !ruby/object:Gem::Version
230
230
  version: '0'
231
231
  requirements: []
232
- rubygems_version: 3.6.9
232
+ rubygems_version: 3.7.2
233
233
  specification_version: 4
234
234
  summary: Clean DSL for config settings with validation and Rails integration
235
235
  test_files: