aws_secrets_loader 0.2.3 → 0.2.7
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/.github/workflows/gem-push.yml +4 -4
- data/.github/workflows/ruby.yml +3 -5
- data/.gitignore +4 -0
- data/aws_secrets_loader.gemspec +1 -0
- data/lib/aws_secrets_loader/aws_fetcher.rb +1 -1
- data/lib/aws_secrets_loader/version.rb +1 -1
- metadata +5 -5
- data/Gemfile.lock +0 -77
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 65c647855b1ce52befb78c4e53a2cb9357f19418d557d75d8d764b42ac0f0e14
|
|
4
|
+
data.tar.gz: 9f3d1e165aebaabe44ba2bd432cc9284379cfa5f4204816b2fda18915c432316
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ec616821bca68f7bcbb453fd3e38b8bb8d4825cd929866b608e6b25f61657a1b4b2880c505a64b6c5f8bf2df507625adc3786e20da9cbb0022b5b20ee6248a0e
|
|
7
|
+
data.tar.gz: 9a5fae7f8d5c4707e1455a11f3f0a17b18ce71dff3f0c2498a75f10139da53b5708f307d340e655de9955fc4ef9478fb25408777083aa7a216e1e6fc1640b266
|
|
@@ -10,12 +10,12 @@ jobs:
|
|
|
10
10
|
runs-on: ubuntu-latest
|
|
11
11
|
|
|
12
12
|
steps:
|
|
13
|
-
- uses: actions/checkout@
|
|
13
|
+
- uses: actions/checkout@v3
|
|
14
14
|
- name: Set up Ruby 2.6
|
|
15
|
-
uses:
|
|
15
|
+
uses: ruby/setup-ruby@v1
|
|
16
16
|
with:
|
|
17
|
-
ruby-version: 2.6
|
|
18
|
-
|
|
17
|
+
ruby-version: 2.6
|
|
18
|
+
bundler-cache: true
|
|
19
19
|
- name: Publish to GPR
|
|
20
20
|
run: |
|
|
21
21
|
mkdir -p $HOME/.gem
|
data/.github/workflows/ruby.yml
CHANGED
|
@@ -19,14 +19,12 @@ jobs:
|
|
|
19
19
|
runs-on: ubuntu-latest
|
|
20
20
|
|
|
21
21
|
steps:
|
|
22
|
-
- uses: actions/checkout@
|
|
22
|
+
- uses: actions/checkout@v3
|
|
23
23
|
- name: Set up Ruby
|
|
24
|
-
|
|
25
|
-
# change this to (see https://github.com/ruby/setup-ruby#versioning):
|
|
26
|
-
# uses: ruby/setup-ruby@v1
|
|
27
|
-
uses: ruby/setup-ruby@21351ecc0a7c196081abca5dc55b08f085efe09a
|
|
24
|
+
uses: ruby/setup-ruby@v1
|
|
28
25
|
with:
|
|
29
26
|
ruby-version: 2.6
|
|
27
|
+
bundler-cache: true
|
|
30
28
|
- name: Install dependencies
|
|
31
29
|
run: bundle install
|
|
32
30
|
- name: Run Lint
|
data/.gitignore
CHANGED
data/aws_secrets_loader.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws_secrets_loader
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Iago
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-04-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-secretsmanager
|
|
@@ -83,7 +83,6 @@ files:
|
|
|
83
83
|
- ".travis.yml"
|
|
84
84
|
- CODE_OF_CONDUCT.md
|
|
85
85
|
- Gemfile
|
|
86
|
-
- Gemfile.lock
|
|
87
86
|
- LICENSE.txt
|
|
88
87
|
- README.md
|
|
89
88
|
- Rakefile
|
|
@@ -97,7 +96,8 @@ files:
|
|
|
97
96
|
homepage: https://github.com/iagopiimenta/aws_secrets_loader
|
|
98
97
|
licenses:
|
|
99
98
|
- MIT
|
|
100
|
-
metadata:
|
|
99
|
+
metadata:
|
|
100
|
+
rubygems_mfa_required: 'true'
|
|
101
101
|
post_install_message:
|
|
102
102
|
rdoc_options: []
|
|
103
103
|
require_paths:
|
|
@@ -113,7 +113,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
113
113
|
- !ruby/object:Gem::Version
|
|
114
114
|
version: '0'
|
|
115
115
|
requirements: []
|
|
116
|
-
rubygems_version: 3.0.3
|
|
116
|
+
rubygems_version: 3.0.3.1
|
|
117
117
|
signing_key:
|
|
118
118
|
specification_version: 4
|
|
119
119
|
summary: AWS Secret Manager Loader on Rails
|
data/Gemfile.lock
DELETED
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
PATH
|
|
2
|
-
remote: .
|
|
3
|
-
specs:
|
|
4
|
-
aws_secrets_loader (0.2.3)
|
|
5
|
-
aws-sdk-secretsmanager (~> 1.43)
|
|
6
|
-
|
|
7
|
-
GEM
|
|
8
|
-
remote: https://rubygems.org/
|
|
9
|
-
specs:
|
|
10
|
-
ast (2.4.1)
|
|
11
|
-
aws-eventstream (1.1.0)
|
|
12
|
-
aws-partitions (1.402.0)
|
|
13
|
-
aws-sdk-core (3.110.0)
|
|
14
|
-
aws-eventstream (~> 1, >= 1.0.2)
|
|
15
|
-
aws-partitions (~> 1, >= 1.239.0)
|
|
16
|
-
aws-sigv4 (~> 1.1)
|
|
17
|
-
jmespath (~> 1.0)
|
|
18
|
-
aws-sdk-secretsmanager (1.43.0)
|
|
19
|
-
aws-sdk-core (~> 3, >= 3.109.0)
|
|
20
|
-
aws-sigv4 (~> 1.1)
|
|
21
|
-
aws-sigv4 (1.2.2)
|
|
22
|
-
aws-eventstream (~> 1, >= 1.0.2)
|
|
23
|
-
diff-lcs (1.4.4)
|
|
24
|
-
docile (1.3.2)
|
|
25
|
-
jmespath (1.4.0)
|
|
26
|
-
json (2.3.1)
|
|
27
|
-
parallel (1.20.1)
|
|
28
|
-
parser (2.7.2.0)
|
|
29
|
-
ast (~> 2.4.1)
|
|
30
|
-
rainbow (3.0.0)
|
|
31
|
-
rake (13.0.1)
|
|
32
|
-
regexp_parser (2.0.0)
|
|
33
|
-
rexml (3.2.4)
|
|
34
|
-
rspec (3.10.0)
|
|
35
|
-
rspec-core (~> 3.10.0)
|
|
36
|
-
rspec-expectations (~> 3.10.0)
|
|
37
|
-
rspec-mocks (~> 3.10.0)
|
|
38
|
-
rspec-core (3.10.0)
|
|
39
|
-
rspec-support (~> 3.10.0)
|
|
40
|
-
rspec-expectations (3.10.0)
|
|
41
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
42
|
-
rspec-support (~> 3.10.0)
|
|
43
|
-
rspec-mocks (3.10.0)
|
|
44
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
45
|
-
rspec-support (~> 3.10.0)
|
|
46
|
-
rspec-support (3.10.0)
|
|
47
|
-
rubocop (1.5.2)
|
|
48
|
-
parallel (~> 1.10)
|
|
49
|
-
parser (>= 2.7.1.5)
|
|
50
|
-
rainbow (>= 2.2.2, < 4.0)
|
|
51
|
-
regexp_parser (>= 1.8, < 3.0)
|
|
52
|
-
rexml
|
|
53
|
-
rubocop-ast (>= 1.2.0, < 2.0)
|
|
54
|
-
ruby-progressbar (~> 1.7)
|
|
55
|
-
unicode-display_width (>= 1.4.0, < 2.0)
|
|
56
|
-
rubocop-ast (1.3.0)
|
|
57
|
-
parser (>= 2.7.1.5)
|
|
58
|
-
ruby-progressbar (1.10.1)
|
|
59
|
-
simplecov (0.17.1)
|
|
60
|
-
docile (~> 1.1)
|
|
61
|
-
json (>= 1.8, < 3)
|
|
62
|
-
simplecov-html (~> 0.10.0)
|
|
63
|
-
simplecov-html (0.10.2)
|
|
64
|
-
unicode-display_width (1.7.0)
|
|
65
|
-
|
|
66
|
-
PLATFORMS
|
|
67
|
-
ruby
|
|
68
|
-
|
|
69
|
-
DEPENDENCIES
|
|
70
|
-
aws_secrets_loader!
|
|
71
|
-
rake (~> 13.0)
|
|
72
|
-
rspec (~> 3.0)
|
|
73
|
-
rubocop (~> 1.1)
|
|
74
|
-
simplecov (< 0.18)
|
|
75
|
-
|
|
76
|
-
BUNDLED WITH
|
|
77
|
-
2.1.4
|