secret_config 0.8.0 → 0.10.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 +4 -4
- data/README.md +17 -800
- data/bin/{secret_config → secret-config} +0 -0
- data/lib/secret_config.rb +1 -1
- data/lib/secret_config/cli.rb +134 -92
- data/lib/secret_config/config.rb +14 -0
- data/lib/secret_config/errors.rb +3 -0
- data/lib/secret_config/parser.rb +11 -11
- data/lib/secret_config/providers/file.rb +2 -2
- data/lib/secret_config/registry.rb +10 -10
- data/lib/secret_config/setting_interpolator.rb +19 -12
- data/lib/secret_config/string_interpolator.rb +7 -7
- data/lib/secret_config/utils.rb +1 -1
- data/lib/secret_config/version.rb +1 -1
- data/test/config/application.yml +4 -4
- data/test/parser_test.rb +2 -2
- data/test/providers/file_test.rb +1 -1
- data/test/providers/ssm_test.rb +1 -1
- data/test/registry_test.rb +7 -2
- data/test/secret_config_test.rb +0 -1
- data/test/setting_interpolator_test.rb +34 -27
- data/test/test_helper.rb +1 -1
- metadata +12 -12
data/test/test_helper.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: secret_config
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.10.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Reid Morrison
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-01-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: concurrent-ruby
|
@@ -24,18 +24,18 @@ dependencies:
|
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0'
|
27
|
-
description:
|
27
|
+
description:
|
28
28
|
email:
|
29
29
|
- reidmo@gmail.com
|
30
30
|
executables:
|
31
|
-
-
|
31
|
+
- secret-config
|
32
32
|
extensions: []
|
33
33
|
extra_rdoc_files: []
|
34
34
|
files:
|
35
35
|
- LICENSE
|
36
36
|
- README.md
|
37
37
|
- Rakefile
|
38
|
-
- bin/
|
38
|
+
- bin/secret-config
|
39
39
|
- lib/secret_config.rb
|
40
40
|
- lib/secret_config/cli.rb
|
41
41
|
- lib/secret_config/config.rb
|
@@ -63,7 +63,7 @@ homepage: https://github.com/rocketjob/secret_config
|
|
63
63
|
licenses:
|
64
64
|
- Apache-2.0
|
65
65
|
metadata: {}
|
66
|
-
post_install_message:
|
66
|
+
post_install_message:
|
67
67
|
rdoc_options: []
|
68
68
|
require_paths:
|
69
69
|
- lib
|
@@ -78,17 +78,17 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
78
78
|
- !ruby/object:Gem::Version
|
79
79
|
version: '0'
|
80
80
|
requirements: []
|
81
|
-
rubygems_version: 3.
|
82
|
-
signing_key:
|
81
|
+
rubygems_version: 3.2.3
|
82
|
+
signing_key:
|
83
83
|
specification_version: 4
|
84
84
|
summary: Centralized Configuration and Secrets Management for Ruby and Rails applications.
|
85
85
|
test_files:
|
86
86
|
- test/config/application.yml
|
87
|
-
- test/
|
87
|
+
- test/parser_test.rb
|
88
88
|
- test/providers/file_test.rb
|
89
|
+
- test/providers/ssm_test.rb
|
89
90
|
- test/registry_test.rb
|
91
|
+
- test/secret_config_test.rb
|
90
92
|
- test/setting_interpolator_test.rb
|
91
|
-
- test/parser_test.rb
|
92
93
|
- test/test_helper.rb
|
93
94
|
- test/utils_test.rb
|
94
|
-
- test/secret_config_test.rb
|