kerbi 0.0.13 → 0.0.14

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 (3) hide show
  1. checksums.yaml +4 -4
  2. data/spec/spec_helper.rb +6 -1
  3. metadata +38 -38
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ca38a5f6ca920ab236cd405551a44dd3415b8ecc746798583aa6e2efe32d53d7
4
- data.tar.gz: '008754026121c9e6e03b68d99da1df0d4a6b906839a4b9e56b7173369f5600b5'
3
+ metadata.gz: 8d8999fdba8f18c4b14f4ad1502f757cfa28c928fc730171883342ea2668a8c4
4
+ data.tar.gz: c0f6abce1446eb1341e60f5d8329ed6b7ef6ec188ca09041d565a369732641c9
5
5
  SHA512:
6
- metadata.gz: 0b307cbc7cde2f434fe6887ab6cc467a4b6b97cb9d5ca93a6cb4c776cccce8acefaf37dc30bbe8cf752d943f32c583a30664721ce33ae0c4898aa1e1dc5c039a
7
- data.tar.gz: 0413fdd8e9276992b6802b24d32fb98ee4d21a2df82c33b4806b057d8feb2fea2fcde9f042aba1fd112deaf5f858e4d98adf5be8ec37783554b0a4c95d6ee1c5
6
+ metadata.gz: a1e1fae76922e608f88669efe9887c364ae2a6b3af51e0b26ef8ef0a15b776d0c7a9bf547779759c294500549d8cc38e450aae89843a40fe429d9491d06ed906
7
+ data.tar.gz: af7bf4eade8fccbba3f91f1bab8852911ba32964dde5351279ef0e0c656998815a529d36f144f1c9f43c5242edfa3d0cc4fe7fa6421c04a9b03d916dcb0132a1
data/spec/spec_helper.rb CHANGED
@@ -1,8 +1,13 @@
1
1
  require 'tempfile'
2
- require 'simplecov'
3
2
 
3
+ require 'simplecov'
4
4
  SimpleCov.start
5
5
 
6
+ if ENV['UPLOAD_CODECOV']
7
+ require 'codecov'
8
+ SimpleCov.formatter = SimpleCov::Formatter::Codecov
9
+ end
10
+
6
11
  require_relative './../lib/kerbi'
7
12
 
8
13
  def run_opts
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kerbi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.13
4
+ version: 0.0.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Xavier Millot
@@ -239,60 +239,60 @@ signing_key:
239
239
  specification_version: 4
240
240
  summary: Multi-strategy Kubernetes manifest templating engine.
241
241
  test_files:
242
- - spec/spec_helper.rb
242
+ - spec/main/project_code_gen_spec.rb
243
243
  - spec/main/mixer_spec.rb
244
- - spec/main/state_entry_spec.rb
245
244
  - spec/main/configmap_backend_spec.rb
246
245
  - spec/main/state_entry_set_spec.rb
247
- - spec/main/project_code_gen_spec.rb
248
- - spec/utils/helm_spec.rb
249
- - spec/utils/mixing_utils_spec.rb
250
- - spec/utils/k8s_auth_spec.rb
251
- - spec/utils/misc_utils_spec.rb
252
- - spec/utils/values_utils_spec.rb
253
- - spec/mixins/mixer_mixin_spec.rb
254
- - spec/cli/state_handler_spec.rb
255
- - spec/cli/values_handler_spec.rb
246
+ - spec/main/state_entry_spec.rb
256
247
  - spec/cli/release_handler_spec.rb
257
248
  - spec/cli/config_handler_spec.rb
249
+ - spec/cli/values_handler_spec.rb
250
+ - spec/cli/state_handler_spec.rb
258
251
  - spec/cli/root_handler_spec.rb
259
- - spec/fixtures/embedding.yaml.erb
260
- - spec/fixtures/expectations/values/order-of-precedence.yaml
252
+ - spec/utils/values_utils_spec.rb
253
+ - spec/utils/mixing_utils_spec.rb
254
+ - spec/utils/misc_utils_spec.rb
255
+ - spec/utils/helm_spec.rb
256
+ - spec/utils/k8s_auth_spec.rb
257
+ - spec/mixins/mixer_mixin_spec.rb
258
+ - spec/fixtures/mini-projects/hello-kerbi/common/metadata.yaml.erb
259
+ - spec/fixtures/mini-projects/hello-kerbi/kerbifile.rb
260
+ - spec/fixtures/mini-projects/hello-kerbi/helpers.rb
261
+ - spec/fixtures/mini-projects/hello-kerbi/values/v2.yaml
262
+ - spec/fixtures/mini-projects/hello-kerbi/values/production.yaml
263
+ - spec/fixtures/mini-projects/hello-kerbi/values/values.yaml
264
+ - spec/fixtures/mini-projects/hello-kerbi/consts.rb
265
+ - spec/fixtures/mini-projects/hello-kerbi/pod-and-service.yaml.erb
261
266
  - spec/fixtures/expectations/common/bad-tag.txt
262
- - spec/fixtures/expectations/state/list.yaml
263
- - spec/fixtures/expectations/state/delete.txt
264
- - spec/fixtures/expectations/state/show.yaml
267
+ - spec/fixtures/expectations/release/init-already-existed.txt
268
+ - spec/fixtures/expectations/release/status-data-unreadable.txt
269
+ - spec/fixtures/expectations/release/init-both-created.txt
270
+ - spec/fixtures/expectations/release/status-all-working.txt
271
+ - spec/fixtures/expectations/release/status-not-provisioned.txt
272
+ - spec/fixtures/expectations/release/list.txt
273
+ - spec/fixtures/expectations/release/delete.txt
274
+ - spec/fixtures/expectations/values/order-of-precedence.yaml
265
275
  - spec/fixtures/expectations/state/prune-candidates.txt
266
- - spec/fixtures/expectations/state/list.txt
276
+ - spec/fixtures/expectations/state/list.yaml
267
277
  - spec/fixtures/expectations/state/demote.txt
278
+ - spec/fixtures/expectations/state/show.yaml
268
279
  - spec/fixtures/expectations/state/show.txt
269
280
  - spec/fixtures/expectations/state/show.json
281
+ - spec/fixtures/expectations/state/set.txt
282
+ - spec/fixtures/expectations/state/list.txt
270
283
  - spec/fixtures/expectations/state/promote.txt
284
+ - spec/fixtures/expectations/state/delete.txt
271
285
  - spec/fixtures/expectations/state/list.json
272
286
  - spec/fixtures/expectations/state/retag.txt
273
- - spec/fixtures/expectations/state/set.txt
274
- - spec/fixtures/expectations/release/delete.txt
275
- - spec/fixtures/expectations/release/status-not-provisioned.txt
276
- - spec/fixtures/expectations/release/status-data-unreadable.txt
277
- - spec/fixtures/expectations/release/list.txt
278
- - spec/fixtures/expectations/release/init-both-created.txt
279
- - spec/fixtures/expectations/release/init-already-existed.txt
280
- - spec/fixtures/expectations/release/status-all-working.txt
281
287
  - spec/fixtures/expectations/config/show-default.yaml
282
288
  - spec/fixtures/expectations/config/bad-set.txt
283
289
  - spec/fixtures/expectations/config/set.txt
284
- - spec/fixtures/expectations/root/values.json
285
- - spec/fixtures/expectations/root/template-production.yaml
286
- - spec/fixtures/expectations/root/template.yaml
287
- - spec/fixtures/expectations/root/template-read-inlines.yaml
288
290
  - spec/fixtures/expectations/root/template-write.yaml
289
291
  - spec/fixtures/expectations/root/template-read.yaml
292
+ - spec/fixtures/expectations/root/template-production.yaml
290
293
  - spec/fixtures/expectations/root/template-inlines.yaml
291
- - spec/fixtures/mini-projects/hello-kerbi/values/values.yaml
292
- - spec/fixtures/mini-projects/hello-kerbi/values/v2.yaml
293
- - spec/fixtures/mini-projects/hello-kerbi/values/production.yaml
294
- - spec/fixtures/mini-projects/hello-kerbi/common/metadata.yaml.erb
295
- - spec/fixtures/mini-projects/hello-kerbi/consts.rb
296
- - spec/fixtures/mini-projects/hello-kerbi/kerbifile.rb
297
- - spec/fixtures/mini-projects/hello-kerbi/pod-and-service.yaml.erb
298
- - spec/fixtures/mini-projects/hello-kerbi/helpers.rb
294
+ - spec/fixtures/expectations/root/values.json
295
+ - spec/fixtures/expectations/root/template-read-inlines.yaml
296
+ - spec/fixtures/expectations/root/template.yaml
297
+ - spec/fixtures/embedding.yaml.erb
298
+ - spec/spec_helper.rb