rrx_config 0.1.1 → 0.1.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 +4 -4
- data/Gemfile +0 -7
- data/Gemfile.lock +20 -23
- data/global.pem +3028 -0
- data/lib/rrx_config/aws.rb +36 -14
- data/lib/rrx_config/configuration.rb +6 -0
- data/lib/rrx_config/database_config/iam_hash_config.rb +87 -0
- data/lib/rrx_config/database_config.rb +32 -72
- data/lib/rrx_config/environment.rb +7 -0
- data/lib/rrx_config/error.rb +5 -0
- data/lib/rrx_config/railtie.rb +30 -0
- data/lib/rrx_config/sources/aws_secret_source.rb +9 -3
- data/lib/rrx_config/sources/base.rb +11 -6
- data/lib/rrx_config/sources/environment_source.rb +0 -1
- data/lib/rrx_config/version.rb +1 -1
- data/lib/rrx_config.rb +30 -5
- metadata +90 -7
- data/.idea/.gitignore +0 -8
- data/.idea/inspectionProfiles/Project_Default.xml +0 -8
- data/.idea/modules.xml +0 -8
- data/.idea/rrx_config.iml +0 -185
- data/.idea/vcs.xml +0 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a1cef46013f979c18dacbea0608b8a5634ff55dba92d4a3e8a60d544a666265f
|
|
4
|
+
data.tar.gz: 9a188dbcfb69d4551364df86c5d79ec31c23b698b9b593432577c3433071b6f2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9a10a0b572ad6a09237fc9321e97c19e9ced87777e04ff21280ebbd50742d484a354263662ddf6098ce42d62835f325112ec53cee90d5969e0753182de9b1fc4
|
|
7
|
+
data.tar.gz: fcca273e1e4b019a7a24a6adc06f085524fcef58a5bbe141d0539963651fc647ba9ba94dc9a1880b8bb5e7a4fb19b100d010f0c778c763e54964200cbb225754
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,28 +1,8 @@
|
|
|
1
|
-
PATH
|
|
2
|
-
remote: ../rrx_dev
|
|
3
|
-
specs:
|
|
4
|
-
rrx_dev (0.1.2)
|
|
5
|
-
active_record_query_trace
|
|
6
|
-
activesupport (~> 7.1.0)
|
|
7
|
-
bootsnap
|
|
8
|
-
debug
|
|
9
|
-
factory_bot_rails
|
|
10
|
-
listen
|
|
11
|
-
railties (~> 7.1.0)
|
|
12
|
-
rake (>= 13.0)
|
|
13
|
-
rspec (>= 3.0)
|
|
14
|
-
rspec-parameterized
|
|
15
|
-
rspec-rails
|
|
16
|
-
rswag-specs
|
|
17
|
-
rubocop (>= 1.21)
|
|
18
|
-
rubocop-rails
|
|
19
|
-
spring
|
|
20
|
-
thor
|
|
21
|
-
|
|
22
1
|
PATH
|
|
23
2
|
remote: .
|
|
24
3
|
specs:
|
|
25
|
-
rrx_config (0.1.
|
|
4
|
+
rrx_config (0.1.2)
|
|
5
|
+
activesupport
|
|
26
6
|
railties
|
|
27
7
|
|
|
28
8
|
GEM
|
|
@@ -174,6 +154,23 @@ GEM
|
|
|
174
154
|
reline (0.4.1)
|
|
175
155
|
io-console (~> 0.5)
|
|
176
156
|
rexml (3.2.6)
|
|
157
|
+
rrx_dev (0.1.2)
|
|
158
|
+
active_record_query_trace
|
|
159
|
+
activesupport (~> 7.1.0)
|
|
160
|
+
bootsnap
|
|
161
|
+
debug
|
|
162
|
+
factory_bot_rails
|
|
163
|
+
listen
|
|
164
|
+
railties (~> 7.1.0)
|
|
165
|
+
rake (>= 13.0)
|
|
166
|
+
rspec (>= 3.0)
|
|
167
|
+
rspec-parameterized
|
|
168
|
+
rspec-rails
|
|
169
|
+
rswag-specs
|
|
170
|
+
rubocop (>= 1.21)
|
|
171
|
+
rubocop-rails
|
|
172
|
+
spring
|
|
173
|
+
thor
|
|
177
174
|
rspec (3.12.0)
|
|
178
175
|
rspec-core (~> 3.12.0)
|
|
179
176
|
rspec-expectations (~> 3.12.0)
|
|
@@ -253,7 +250,7 @@ DEPENDENCIES
|
|
|
253
250
|
aws-sdk-secretsmanager
|
|
254
251
|
mysql2
|
|
255
252
|
rrx_config!
|
|
256
|
-
rrx_dev
|
|
253
|
+
rrx_dev
|
|
257
254
|
sqlite3
|
|
258
255
|
|
|
259
256
|
BUNDLED WITH
|