helmsnap 0.7.2 → 0.7.3

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: ca9cb2c9877035f1985755a911222b07dc1233cf1ae8e2d98a909a082641cf1b
4
- data.tar.gz: 3577227a017c7f6d35c005fb015a36c759562ebdfe59404d4354bd4e55e5418a
3
+ metadata.gz: ffc691f40a8c6b4f4d28d2379e21e45cc032bf743f71d5cf0df9de0a35f69fe4
4
+ data.tar.gz: b50966b9642e57d6a286e0e20e8dd323711aafeb4723a245125d9e522b05547b
5
5
  SHA512:
6
- metadata.gz: d6173167f7f54f425d57c15d216297f77f75ff071b0b2e351d4d7ba60d59c34468a6a0e4bb089936dd800da716ba41f90b86ba881e7cab83bc4ad4db1c794e35
7
- data.tar.gz: e7d664ebd56ea11cd15b0afb3d049488c93ec26cafa74e6860c6f31d9de9fa5b92804c2bcff6a92b7f7519482497618fa321ef7840a6af87c0464dcacb356e6d
6
+ metadata.gz: 2f4bb8e9617bc866856f5160933fc7a755b441ed397374a57ed7cf9b01625b795163a448154af200af5b830bbf46107d45397fe35380d236a45e978ee66c09dd
7
+ data.tar.gz: b63cab9f3767a79586beec2279a4b490c3ff144b426482504233e7a19741dd168bb90c8f21b96a2fc83b32e5ea962f7a970faecf043bf1880e3ce461cf2ed101
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- helmsnap (0.7.2)
4
+ helmsnap (0.7.3)
5
5
  colorize
6
6
 
7
7
  GEM
@@ -85,6 +85,7 @@ GEM
85
85
  zeitwerk (2.5.1)
86
86
 
87
87
  PLATFORMS
88
+ arm64-darwin-21
88
89
  x86_64-darwin-20
89
90
  x86_64-linux
90
91
 
@@ -97,4 +98,4 @@ DEPENDENCIES
97
98
  rubocop-config-umbrellio
98
99
 
99
100
  BUNDLED WITH
100
- 2.2.32
101
+ 2.2.33
@@ -20,14 +20,14 @@ class Helmsnap::SetupDependencies < Helmsnap::Service
20
20
  dep_list = get_dependency_list(chart_path)
21
21
 
22
22
  dep_list.scan(%r{file://(.+?)\t}) do |dep_path|
23
- run_cmd("helm", "dependency", "update", "--skip-refresh", chart_path.join(dep_path.first))
23
+ run_cmd("helm", "dependency", "update", chart_path.join(dep_path.first))
24
24
  end
25
25
 
26
26
  dep_list.scan(%r{(https?://.+?)\t}) do |dep_path|
27
27
  run_cmd("helm", "repo", "add", Digest::MD5.hexdigest(dep_path.first), dep_path.first)
28
28
  end
29
29
 
30
- run_cmd("helm", "dependency", "update", "--skip-refresh", chart_path)
30
+ run_cmd("helm", "dependency", "update", chart_path)
31
31
  end
32
32
 
33
33
  def get_dependency_list(chart_path)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Helmsnap
4
- VERSION = "0.7.2"
4
+ VERSION = "0.7.3"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: helmsnap
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.2
4
+ version: 0.7.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yuri Smirnov
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-12-09 00:00:00.000000000 Z
11
+ date: 2021-12-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: colorize
@@ -92,7 +92,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
92
92
  - !ruby/object:Gem::Version
93
93
  version: '0'
94
94
  requirements: []
95
- rubygems_version: 3.2.32
95
+ rubygems_version: 3.2.33
96
96
  signing_key:
97
97
  specification_version: 4
98
98
  summary: A tool for creating and checking helm chart snapshots.