aggkit 0.4.5.12326 → 0.4.5.12711

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.
Files changed (4) hide show
  1. checksums.yaml +5 -5
  2. data/.gitlab-ci.yml +21 -4
  3. data/Gemfile.lock +3 -3
  4. metadata +3 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 52470925653d4248475ce09f1c7bc69475ec66be
4
- data.tar.gz: 88874326a0b1bae4f21bb92cb8124f80526afcb3
2
+ SHA256:
3
+ metadata.gz: 0b00794559e4868ffe8d903cd0d4ed94f9fdd8e402327874488788047b6c16ad
4
+ data.tar.gz: 534c66235fb3ff26ef985922cd4449d3f7f9bc9e4908d6bdb8fd828cbd344f07
5
5
  SHA512:
6
- metadata.gz: eb075592fa1471f4d105e171d43b890fbdc4c689ecfe6d76bb54cbf10ad47b9e4bb2cec98b0cdf5c40cd73ae15dc903a060a88e4e3c05a923b1c1b8a8eade489
7
- data.tar.gz: f14d8431ab894237f0c90af82cc7e2bc4e911236e1647ea507a3ad7cfeaf03f4cdf986fa815d2b284b4cc5f59a8ee69115fe7858007c44942f2a33f045328129
6
+ metadata.gz: 70b0d3f242ee71a9bc6386d651d5f888772b54cc72d95da33f887ce9c6403a850f515ea4311116a1d081df85fbcef0dfeb12a07770b95ebe16baca04205a9a4c
7
+ data.tar.gz: ac33be8ecd680b890764eb9e61a6cc29a9126acc3f08675fc8d4ed0f4f6b746c2f1f7657c64b5eb7d4c3e943926c1c0dea5e0b6b7028cc4b9a9bfcc1f7fd9af0
data/.gitlab-ci.yml CHANGED
@@ -23,7 +23,7 @@ stages:
23
23
  - deploy
24
24
 
25
25
  build:
26
- image: rnds/ruby:2.3.0-test
26
+ image: rnds/ruby:2.5-test
27
27
  stage: build
28
28
  variables:
29
29
  BUILDVERSION: ${CI_PIPELINE_ID}
@@ -66,10 +66,9 @@ test-2.5:
66
66
 
67
67
 
68
68
  pronto:
69
- image: rnds/ruby:2.3.0-test
69
+ image: rnds/ruby:2.5-test
70
70
  stage: tests
71
71
  script:
72
- - gem install pronto pronto-rubocop pronto-flay
73
72
  - PRONTO_GITLAB_SLUG=${CI_PROJECT_ID} PRONTO_GITLAB_API_PRIVATE_TOKEN=${BOT_TOKEN} pronto run -f gitlab -c origin/master
74
73
 
75
74
  .code_quality:
@@ -95,8 +94,9 @@ pronto:
95
94
  paths:
96
95
  - gl-code-quality-report.json
97
96
 
97
+
98
98
  pushgem:
99
- image: rnds/ruby:2.3.0-test
99
+ image: rnds/ruby:2.5-test
100
100
  stage: deploy
101
101
  script:
102
102
  - mkdir -p ~/.gem
@@ -107,3 +107,20 @@ pushgem:
107
107
  only:
108
108
  - master
109
109
 
110
+ deps:
111
+ image: rnds/ruby:2.5-test
112
+ stage: deploy
113
+ cache: {}
114
+ allow_failure: true
115
+ script:
116
+ - bundle audit update
117
+ - bundle audit || true
118
+ - bundle outdated --only-explicit --no-pre --group default || true
119
+ - vulnerable=$(bundle audit | grep "Name:" | sort | uniq | wc -l) || true
120
+ - outdated=$(bundle outdated --only-explicit --no-pre --group default | grep "*" | wc -l) || true
121
+ - curl "https://badgen.net/badge/vulnerable%20gems/${vulnerable}/red" > vulnerable.svg
122
+ - curl "https://badgen.net/badge/outdated%20gems/${outdated}/orange" > outdated.svg
123
+ - curl -L -X PUT --header "PRIVATE-TOKEN:$BOT_TOKEN" --form "title=Vulnerable gems badge" --form "file_name=vulnerable.svg" --form "code=<vulnerable.svg" --form "description=Vulnerable dependency gems" https://br.rnds.pro/api/v4/projects/$CI_PROJECT_ID/snippets/42
124
+ - curl -L -X PUT --header "PRIVATE-TOKEN:$BOT_TOKEN" --form "title=Outdaged gems badge" --form "file_name=outdated.svg" --form "code=<outdated.svg" --form "description=Outdated direct dependency gems" https://br.rnds.pro/api/v4/projects/$CI_PROJECT_ID/snippets/43
125
+ only:
126
+ - master
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- aggkit (0.4.5)
4
+ aggkit (0.4.5.12711)
5
5
  diplomat
6
6
  dotenv
7
7
  json
@@ -18,7 +18,7 @@ GEM
18
18
  deep_merge (~> 1.0, >= 1.0.1)
19
19
  faraday (~> 0.9)
20
20
  docile (1.3.1)
21
- dotenv (2.7.2)
21
+ dotenv (2.7.3)
22
22
  faraday (0.15.4)
23
23
  multipart-post (>= 1.2, < 3)
24
24
  json (2.2.0)
@@ -72,4 +72,4 @@ DEPENDENCIES
72
72
  simplecov-console
73
73
 
74
74
  BUNDLED WITH
75
- 1.16.2
75
+ 1.17.3
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aggkit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.5.12326
4
+ version: 0.4.5.12711
5
5
  platform: ruby
6
6
  authors:
7
7
  - Godko Ivan
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-06-16 00:00:00.000000000 Z
12
+ date: 2019-06-23 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: diplomat
@@ -196,8 +196,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
196
196
  - !ruby/object:Gem::Version
197
197
  version: '0'
198
198
  requirements: []
199
- rubyforge_project:
200
- rubygems_version: 2.6.3
199
+ rubygems_version: 3.0.3
201
200
  signing_key:
202
201
  specification_version: 4
203
202
  summary: Helper scripts for work with docker and consul in Aggredator