rubypitaya 2.11.1 → 2.11.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 484a04f94edf96a0610d7756b48a08ac349f1a2e72a244ff07046bec55f1f7be
4
- data.tar.gz: 9951a60c18f4baaa0e34e88ef29c97a140aa00e328efb4bfdc9661a257ce6960
3
+ metadata.gz: c7e8a7c7726e4dc71ad1ddc76fc5c0622a93a6073e328408221f4a0240cceecb
4
+ data.tar.gz: 967f507ded443eeedaa6dfeb646423edad0b57c59b7b4d467b96a782e9d5cc98
5
5
  SHA512:
6
- metadata.gz: 275cfad81877d43ada6941369801ffb438e88d825bd9a1d7f4bdd777bbef56a4a9fcb2e1a06b7753d1d100c716da1b8ce61e5e331f1e27a471df1ae91e7a5182
7
- data.tar.gz: cc9b47f3f138bb73474fcd726a88644c806b7c79c908b4334734fbd3171da6fc03db17735de3121af3ad7cde73bb57982b991d0b3cd32e67b295e9b29fa0f3f3
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
+
@@ -1,6 +1,6 @@
1
1
  source "https://rubygems.org"
2
2
 
3
- gem 'rubypitaya', '2.11.1'
3
+ gem 'rubypitaya', '2.11.2'
4
4
 
5
5
  group :development do
6
6
  gem 'pry', '0.12.2'
@@ -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.1)
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.1)
126
+ rubypitaya (= 2.11.2)
127
127
 
128
128
  BUNDLED WITH
129
129
  1.17.2
@@ -1,3 +1,3 @@
1
1
  module RubyPitaya
2
- VERSION = '2.11.1'
2
+ VERSION = '2.11.2'
3
3
  end
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.1
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"