rubypitaya 2.11.1 → 2.11.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c7e8a7c7726e4dc71ad1ddc76fc5c0622a93a6073e328408221f4a0240cceecb
|
|
4
|
+
data.tar.gz: 967f507ded443eeedaa6dfeb646423edad0b57c59b7b4d467b96a782e9d5cc98
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d7a33438ac2809011b0e0bad8f03590e2ea804a8c293423a2fb20df61d72bf0b311120abf64f93333617f43713c45b19c5961b917470d76bc541cb3dcf850429
|
|
7
|
+
data.tar.gz: e47d2808c37d23a236275b8e79e075eed20dfe37ed6f4deebe64a00b1a7df492251498579c723968caadefc35157fb12be400f4d1645b79668510e2eea5b700a
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
stages:
|
|
2
|
+
- test
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
variables:
|
|
6
|
+
IMAGE_TAG: $CI_COMMIT_SHORT_SHA
|
|
7
|
+
|
|
8
|
+
METAGAME_IMAGE: [put-your-registry-here]
|
|
9
|
+
METAGAME_FOLDER: ./
|
|
10
|
+
|
|
11
|
+
test-metagame:
|
|
12
|
+
stage: test
|
|
13
|
+
image: docker:latest
|
|
14
|
+
when: always
|
|
15
|
+
services:
|
|
16
|
+
- docker:dind
|
|
17
|
+
before_script:
|
|
18
|
+
- cd $METAGAME_FOLDER
|
|
19
|
+
- apk update && apk add make && apk add docker-compose
|
|
20
|
+
script:
|
|
21
|
+
- docker login -u "gitlab-ci-token" -p "$CI_JOB_TOKEN" $CI_REGISTRY
|
|
22
|
+
- make build
|
|
23
|
+
- make db-test-setup
|
|
24
|
+
- make test
|
|
25
|
+
|
|
@@ -84,7 +84,7 @@ GEM
|
|
|
84
84
|
rspec-support (~> 3.8.0)
|
|
85
85
|
rspec-support (3.8.3)
|
|
86
86
|
ruby2_keywords (0.0.2)
|
|
87
|
-
rubypitaya (2.11.
|
|
87
|
+
rubypitaya (2.11.2)
|
|
88
88
|
activerecord (= 6.0.2)
|
|
89
89
|
etcdv3 (= 0.10.2)
|
|
90
90
|
eventmachine (= 1.2.7)
|
|
@@ -123,7 +123,7 @@ DEPENDENCIES
|
|
|
123
123
|
listen (= 3.2.1)
|
|
124
124
|
pry (= 0.12.2)
|
|
125
125
|
rspec (= 3.8.0)
|
|
126
|
-
rubypitaya (= 2.11.
|
|
126
|
+
rubypitaya (= 2.11.2)
|
|
127
127
|
|
|
128
128
|
BUNDLED WITH
|
|
129
129
|
1.17.2
|
data/lib/rubypitaya/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubypitaya
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.11.
|
|
4
|
+
version: 2.11.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Luciano Prestes Cavalcanti
|
|
@@ -244,6 +244,7 @@ extra_rdoc_files: []
|
|
|
244
244
|
files:
|
|
245
245
|
- "./lib/rubypitaya.rb"
|
|
246
246
|
- "./lib/rubypitaya/app-template/.gitignore"
|
|
247
|
+
- "./lib/rubypitaya/app-template/.gitlab-ci.yml"
|
|
247
248
|
- "./lib/rubypitaya/app-template/.irbrc"
|
|
248
249
|
- "./lib/rubypitaya/app-template/Gemfile"
|
|
249
250
|
- "./lib/rubypitaya/app-template/Gemfile.lock"
|