configsl 1.0.0 → 1.0.1
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 +4 -4
- data/CHANGELOG.md +8 -1
- data/README.md +1 -1
- data/lib/configsl/config.rb +1 -1
- data/lib/configsl.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 06cf30d8683d316e9f00f24cf324465c724b04d40a8d7e74df15f8ec33ca95a4
|
4
|
+
data.tar.gz: '080889e5f38083bce719c9aa789497eab0c70510219446d349e3d79b28f03963'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 418da3e3e16b8663f9ab8fe7bcb3625bb22fc4251eb376345e412aa31b850d9636c7d49e9357277e00fd5faf3f90ba568f7fe7b16aa24bec46b3bb270e551efa
|
7
|
+
data.tar.gz: 2706b3affda2525f8e3d62d120e960755d972966560bdacdb950f867f24f124058de1dcd98f73baa74fa8b6422ab3d6fca3b1e2467b5bd611d28ef5e464a6736
|
data/CHANGELOG.md
CHANGED
@@ -4,7 +4,14 @@ All notable changes to this project will be documented in this file.
|
|
4
4
|
|
5
5
|
The format is based on [Keep a Changelog][changelog], and this project adheres
|
6
6
|
to [Semantic Versioning][versioning].
|
7
|
-
|
7
|
+
|
8
|
+
## [1.0.1]
|
9
|
+
|
10
|
+
### Fixed
|
11
|
+
|
12
|
+
- Subclasses of `ConfigSL::Config` initialized with sting keys no longer raise
|
13
|
+
an error.
|
14
|
+
|
8
15
|
## 1.0.0
|
9
16
|
|
10
17
|
Initial release.
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# ConfigSL [![Coverage Status][badge-coverage]][coverage]
|
1
|
+
# ConfigSL [](https://badge.fury.io/rb/configsl) [![Coverage Status][badge-coverage]][coverage] [](https://github.com/jamesiarmes/configsl/actions/workflows/checks.yaml)
|
2
2
|
|
3
3
|
ConfigSL is a simple Domain-Specific Language (DSL) module for configuration.
|
4
4
|
It is designed to provide a declarative way to define configuration, with as few
|
data/lib/configsl/config.rb
CHANGED
data/lib/configsl.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: configsl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- James I. Armes
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-09-
|
11
|
+
date: 2024-09-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: facets
|
@@ -56,7 +56,7 @@ metadata:
|
|
56
56
|
homepage_uri: https://github.com/jamesiarmes/configsl
|
57
57
|
rubygems_mfa_required: 'true'
|
58
58
|
source_code_uri: https://github.com/jamesiarmes/configsl
|
59
|
-
post_install_message:
|
59
|
+
post_install_message:
|
60
60
|
rdoc_options: []
|
61
61
|
require_paths:
|
62
62
|
- lib
|
@@ -72,7 +72,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
72
72
|
version: '0'
|
73
73
|
requirements: []
|
74
74
|
rubygems_version: 3.5.9
|
75
|
-
signing_key:
|
75
|
+
signing_key:
|
76
76
|
specification_version: 4
|
77
77
|
summary: A simple DSL for declarative configuration in ruby.
|
78
78
|
test_files: []
|