helm-cli 0.1.0 → 0.2.0

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: 263c69fab404dc53e791fb3dea4d5243f621b2722088735489be6d046e6c991f
4
- data.tar.gz: 251cd620965589773af0c8b143f379acafe264a174382ed4140198896a294ba2
3
+ metadata.gz: 2178e1cf5c785d76d7adfdf613b8ba498f16ce460467e12bc5950e2b39c57410
4
+ data.tar.gz: 13467f86a20c2c1c57294cbb30b72d1778d4cee9ca388dd0c15450cd2b7f4e4b
5
5
  SHA512:
6
- metadata.gz: 32ced599fa6ac9ad5d76c1ec0aea2c8bffbce523cc5c887072b9a23d4c99e81ada3c221e2eebbd67516f6769e1735528d3010ff3f5f862e65c5322d18256b6d5
7
- data.tar.gz: 45d0797a09e4fd3aa2276fc1cca90278c8db2be563996680749e2beb0c288e9e1ec1ff0bb6a159823b811e9f489690472e9fd3f093022a3b676e70f6f4d46787
6
+ metadata.gz: 4211173e0d471ad4ad65ca225a6f2f3037dcd7bd806c3caf8bfbf5a89ca6c1b0b3bb6020e393064b8588b572135a5e15a3af8d58a4a8b971216979aebd094121
7
+ data.tar.gz: 973c27dd6c8cb77e99de3d80b5628d45ce58c80021f70cf4b4f2c18fde82399c7cd2ca74b7ebbcdea3741b39726f797ce43c8b724178e1ce1474bc544a120a4d
@@ -1,2 +1,5 @@
1
+ ## 0.2.0
2
+ * Fix bug causing crash when an error occurs while upgrading a chart.
3
+
1
4
  ## 0.1.0
2
5
  * Birthday!
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020 Cameron Dutro
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -14,5 +14,5 @@ Gem::Specification.new do |s|
14
14
  s.add_dependency 'helm-rb', '~> 0.1'
15
15
 
16
16
  s.require_path = 'lib'
17
- s.files = Dir['{lib,spec,vendor}/**/*', 'Gemfile', 'CHANGELOG.md', 'README.md', 'Rakefile', 'helm-cli.gemspec']
17
+ s.files = Dir['{lib,spec,vendor}/**/*', 'Gemfile', 'LICENSE', 'CHANGELOG.md', 'README.md', 'Rakefile', 'helm-cli.gemspec']
18
18
  end
@@ -74,7 +74,7 @@ class HelmCLI
74
74
  systemm(cmd)
75
75
 
76
76
  unless last_status.success?
77
- raise InstallError, "could not upgrade chart '#{name}': helm "\
77
+ raise InstallError, "could not upgrade chart '#{release}': helm "\
78
78
  "exited with status code #{last_status.exitstatus}"
79
79
  end
80
80
  end
@@ -1,3 +1,3 @@
1
1
  class HelmCLI
2
- VERSION = '0.1.0'
2
+ VERSION = '0.2.0'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: helm-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cameron Dutro
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-21 00:00:00.000000000 Z
11
+ date: 2020-06-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: helm-rb
@@ -33,6 +33,7 @@ extra_rdoc_files: []
33
33
  files:
34
34
  - CHANGELOG.md
35
35
  - Gemfile
36
+ - LICENSE
36
37
  - Rakefile
37
38
  - helm-cli.gemspec
38
39
  - lib/helm-cli.rb
@@ -41,7 +42,7 @@ homepage: http://github.com/getkuby/helm-cli
41
42
  licenses:
42
43
  - MIT
43
44
  metadata: {}
44
- post_install_message:
45
+ post_install_message:
45
46
  rdoc_options: []
46
47
  require_paths:
47
48
  - lib
@@ -56,8 +57,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
56
57
  - !ruby/object:Gem::Version
57
58
  version: '0'
58
59
  requirements: []
59
- rubygems_version: 3.0.6
60
- signing_key:
60
+ rubygems_version: 3.1.4
61
+ signing_key:
61
62
  specification_version: 4
62
63
  summary: Ruby wrapper around the Helm CLI.
63
64
  test_files: []