const_conf 0.4.0 → 0.4.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: af8de1ef676a5506d6ac24c9a0a5cb12c2764be09c78718a8ba89b1835b174df
4
- data.tar.gz: f772b3255dcc22c76a1cd2a0767723e544f357857ec990a9e3f4525b479db44f
3
+ metadata.gz: 19a5a45903e8c2f791137d6915c030d37d30604281302dd94e3e8106e04a6d86
4
+ data.tar.gz: af9bb6d4476d64d5d580e6507b8e175d9c229399336e58f7ec3abcf616b23820
5
5
  SHA512:
6
- metadata.gz: 63c554ea00c471a168199ce9fe2af35e7b2b90a070e2aa6d42b9f02cfd881dca59b3f9bcc0606186449ce7cbcc4620fd269c89fa3d1a13db434b276b82c9e9f0
7
- data.tar.gz: 6cf09d2de496051711c5e0651496c2088c8a2518c7503568c7716e8bc7f620be13ebd7c6a95c94c62dff4282e278a0b930b2f0f7994a038b6ae53ab7e58c09fc
6
+ metadata.gz: f7a42bb5cb789f317c47fc61953841e3c4d01aa630b931fec09d9638b85a56407912d1adc2392d3a1f6fb4ba742c287855ea06e2ff2cb6c1e4ae65b39e1a41ad
7
+ data.tar.gz: ed2a1f66bd4a6460671e4db21ee400de2120a3272cf4064c36b85067a415054e2f0adbea2709b7c2027d3a61c0da763b650fd69b0cea2af72e8a5c9b7a79e87a
data/CHANGES.md CHANGED
@@ -1,5 +1,27 @@
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
+
8
+ ## 2025-10-15 v0.4.1
9
+
10
+ - Added `.github/workflows/static.yml` to deploy static content to GitHub Pages
11
+ - Updated `README.md` to include link to GitHub.io documentation
12
+ - Modified `Rakefile` to ignore `.github` directory and add GitHub workflows
13
+ configuration
14
+ - Configured workflow to use Ruby **3.4** and generate documentation using
15
+ `rake doc`
16
+ - Added workflow dispatch support for manual triggering
17
+ - Configured permissions for pages deployment with read/write access to
18
+ contents and pages
19
+ - Set concurrency to prevent multiple deployments while allowing in-progress
20
+ ones to complete
21
+ - Updated `gem_hadar` development dependency from version **2.6** to **2.8**
22
+ - The gemspec file reflects the updated dependency version for `gem_hadar`
23
+ - The dockerfile now includes `openssl-dev` in the apk add command
24
+
3
25
  ## 2025-09-18 v0.4.0
4
26
 
5
27
  - Improved handling of configuration files with trailing whitespace:
data/README.md CHANGED
@@ -3,6 +3,10 @@
3
3
  **ConstConf**: A robust, thread-safe configuration management library for Ruby
4
4
  applications.
5
5
 
6
+ ## Documentation
7
+
8
+ Complete API documentation is available at: [GitHub.io](https://flori.github.io/const_conf/)
9
+
6
10
  ## Description
7
11
 
8
12
  ConstConf provides a clean DSL for defining configuration settings with
data/Rakefile CHANGED
@@ -18,9 +18,13 @@ GemHadar do
18
18
  ignore '.*.sw[pon]', 'pkg', 'Gemfile.lock', '.AppleDouble', '.bundle',
19
19
  '.yardoc', 'doc', 'tags', 'coverage', 'cscope.out', '.starscope.db'
20
20
  package_ignore '.all_images.yml', '.gitignore', 'VERSION', '.utilsrc',
21
- '.contexts'
21
+ '.contexts', '.github'
22
22
  readme 'README.md'
23
23
 
24
+ github_workflows(
25
+ 'static.yml' => {}
26
+ )
27
+
24
28
  required_ruby_version '~> 3.2'
25
29
 
26
30
  dependency 'tins', '~> 1.43'
data/const_conf.gemspec CHANGED
@@ -1,9 +1,9 @@
1
1
  # -*- encoding: utf-8 -*-
2
- # stub: const_conf 0.4.0 ruby lib
2
+ # stub: const_conf 0.4.2 ruby lib
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "const_conf".freeze
6
- s.version = "0.4.0".freeze
6
+ s.version = "0.4.2".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,13 +17,13 @@ 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
 
24
24
  s.specification_version = 4
25
25
 
26
- s.add_development_dependency(%q<gem_hadar>.freeze, ["~> 2.6".freeze])
26
+ s.add_development_dependency(%q<gem_hadar>.freeze, ["~> 2.8".freeze])
27
27
  s.add_development_dependency(%q<debug>.freeze, [">= 0".freeze])
28
28
  s.add_development_dependency(%q<rspec>.freeze, ["~> 3.13".freeze])
29
29
  s.add_development_dependency(%q<context_spook>.freeze, ["~> 0.4".freeze])
@@ -1,6 +1,6 @@
1
1
  module ConstConf
2
2
  # ConstConf version
3
- VERSION = '0.4.0'
3
+ VERSION = '0.4.2'
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,3 +1,4 @@
1
+ require 'pathname'
1
2
  require 'tins/xt'
2
3
  require 'active_support/all'
3
4
 
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.0
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Florian Frank
@@ -15,14 +15,14 @@ dependencies:
15
15
  requirements:
16
16
  - - "~>"
17
17
  - !ruby/object:Gem::Version
18
- version: '2.6'
18
+ version: '2.8'
19
19
  type: :development
20
20
  prerelease: false
21
21
  version_requirements: !ruby/object:Gem::Requirement
22
22
  requirements:
23
23
  - - "~>"
24
24
  - !ruby/object:Gem::Version
25
- version: '2.6'
25
+ version: '2.8'
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: debug
28
28
  requirement: !ruby/object:Gem::Requirement
@@ -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: