kumo_config 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
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
@@ -0,0 +1,15 @@
1
+ .idea
2
+ /.bundle/
3
+ /.yardoc
4
+ /Gemfile.lock
5
+ /_yardoc/
6
+ /coverage/
7
+ /doc/
8
+ /pkg/
9
+ /spec/reports/
10
+ /tmp/
11
+ *.bundle
12
+ *.so
13
+ *.o
14
+ *.a
15
+ mkmf.log
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --require spec_helper