secret_config 0.7.1 → 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,9 +1,9 @@
1
- $LOAD_PATH.unshift File.dirname(__FILE__) + '/../lib'
1
+ $LOAD_PATH.unshift File.dirname(__FILE__) + "/../lib"
2
2
 
3
- require 'yaml'
4
- require 'minitest/autorun'
5
- require 'minitest/reporters'
6
- require 'secret_config'
7
- require 'awesome_print'
3
+ require "yaml"
4
+ require "minitest/autorun"
5
+ require "minitest/reporters"
6
+ require "secret_config"
7
+ require "awesome_print"
8
8
 
9
9
  Minitest::Reporters.use! Minitest::Reporters::SpecReporter.new
@@ -1,4 +1,4 @@
1
- require_relative 'test_helper'
1
+ require_relative "test_helper"
2
2
 
3
3
  class UtilsTest < Minitest::Test
4
4
  describe SecretConfig::Utils do
@@ -9,7 +9,7 @@ class UtilsTest < Minitest::Test
9
9
  "test/my_application/mysql/username" => "secret_config",
10
10
  "test/my_application/mysql/host" => "127.0.0.1",
11
11
  "test/my_application/secrets" => "both_a_path_and_a_value",
12
- "test/my_application/secrets/secret_key_base" => "somereallylongteststring",
12
+ "test/my_application/secrets/secret_key_base" => "somereallylongteststring"
13
13
  }
14
14
  end
15
15
 
@@ -17,8 +17,8 @@ class UtilsTest < Minitest::Test
17
17
  SecretConfig::Utils.hierarchical(flat_registry)
18
18
  end
19
19
 
20
- describe '.flatten' do
21
- it 'returns a copy of the config' do
20
+ describe ".flatten" do
21
+ it "returns a copy of the config" do
22
22
  h = SecretConfig::Utils.flatten(hash_registry, path = nil)
23
23
  assert_equal(flat_registry, h)
24
24
  end
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.7.1
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Reid Morrison
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-03-10 00:00:00.000000000 Z
11
+ date: 2020-04-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: concurrent-ruby
@@ -38,7 +38,9 @@ files:
38
38
  - bin/secret_config
39
39
  - lib/secret_config.rb
40
40
  - lib/secret_config/cli.rb
41
+ - lib/secret_config/config.rb
41
42
  - lib/secret_config/errors.rb
43
+ - lib/secret_config/parser.rb
42
44
  - lib/secret_config/providers/file.rb
43
45
  - lib/secret_config/providers/provider.rb
44
46
  - lib/secret_config/providers/ssm.rb
@@ -49,6 +51,7 @@ files:
49
51
  - lib/secret_config/utils.rb
50
52
  - lib/secret_config/version.rb
51
53
  - test/config/application.yml
54
+ - test/parser_test.rb
52
55
  - test/providers/file_test.rb
53
56
  - test/providers/ssm_test.rb
54
57
  - test/registry_test.rb
@@ -75,7 +78,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
78
  - !ruby/object:Gem::Version
76
79
  version: '0'
77
80
  requirements: []
78
- rubygems_version: 3.0.6
81
+ rubygems_version: 3.0.8
79
82
  signing_key:
80
83
  specification_version: 4
81
84
  summary: Centralized Configuration and Secrets Management for Ruby and Rails applications.
@@ -85,6 +88,7 @@ test_files:
85
88
  - test/providers/file_test.rb
86
89
  - test/registry_test.rb
87
90
  - test/setting_interpolator_test.rb
91
+ - test/parser_test.rb
88
92
  - test/test_helper.rb
89
93
  - test/utils_test.rb
90
94
  - test/secret_config_test.rb