kumo_config 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.buildkite/pipeline.yml +18 -0
- data/.gitignore +15 -0
- data/.rspec +2 -0
- data/.rubocop.yml +1156 -0
- data/Gemfile +4 -0
- data/README.md +121 -0
- data/Rakefile +2 -0
- data/VERSION +1 -0
- data/kumo_config.gemspec +25 -0
- data/lib/kumo_config/environment_config.rb +125 -0
- data/lib/kumo_config/file_loader.rb +38 -0
- data/lib/kumo_config.rb +1 -0
- data/script/build.sh +12 -0
- data/script/integration_test.sh +13 -0
- data/script/unit_test.sh +13 -0
- data/spec/integration/.gitkeep +0 -0
- data/spec/integration/config_spec.rb +67 -0
- data/spec/integration/fixtures/.gitkeep +0 -0
- data/spec/integration/fixtures/common.yml +2 -0
- data/spec/integration/fixtures/common_secrets.yml +11 -0
- data/spec/integration/fixtures/development.yml +1 -0
- data/spec/integration/fixtures/development_secrets.yml +5 -0
- data/spec/integration/fixtures/production.yml +2 -0
- data/spec/integration/fixtures/production_secrets.yml +11 -0
- data/spec/lib/environment_config_spec.rb +202 -0
- data/spec/lib/file_loader_spec.rb +64 -0
- data/spec/spec_helper.rb +28 -0
- metadata +153 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 567a046a8dab35718d6d21bd9cfd90f52da3d165
|
4
|
+
data.tar.gz: eae81dd787d120b61209a5094b60871ad06bcd52
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 72a62f824b4bbab0be4b59f4ece07077e22758b720f44a906b621eda8771f7edbd21e309938eba08b6d9d556b1ae53fff214e064a6db8aa0fce8735f93e3b2a8
|
7
|
+
data.tar.gz: f71b2ea89860021ecaea5a0489875d44d76769c85ad85de458d37e4cc1c47cf4c0cb4f9c14e05805a05138d5b29a5d32fc2a741df893f877c8b55b7e9a7a7a06
|
@@ -0,0 +1,18 @@
|
|
1
|
+
steps:
|
2
|
+
- name: ':rspec: unit-test'
|
3
|
+
command: script/unit_test.sh
|
4
|
+
agents:
|
5
|
+
location: aws
|
6
|
+
- name: ':rspec: integration-test'
|
7
|
+
command: script/integration_test.sh
|
8
|
+
agents:
|
9
|
+
location: aws
|
10
|
+
env:
|
11
|
+
AWS_REGION: us-east-1
|
12
|
+
|
13
|
+
- wait
|
14
|
+
|
15
|
+
- name: ':gem: build'
|
16
|
+
command: script/build.sh
|
17
|
+
agents:
|
18
|
+
location: aws
|
data/.gitignore
ADDED
data/.rspec
ADDED