civo_cli 0.5.0 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +1 -1
- data/lib/civo_cli/version.rb +1 -1
- data/lib/kubernetes_applications.rb +3 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bb0a1fadf278732284aa7782394d4e0d3051c745200fb61360e6eeed265db36c
|
4
|
+
data.tar.gz: fd8e3b53a65a35df8825e2c5a5ed3a0819034be28be1e337f12db3d4b36ab7b4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9c00dcd9bee1ae08aa18303f9f938f7085640b183053aa50a54adc60b1aadcad51334ef7f6f5a1119daa95b72b0e0fe24c3943c5eea9403dbdfb0c271bc89eb7
|
7
|
+
data.tar.gz: d22f8045cabde6a0540d719d9d61735059bea895632416c6695dcd94bb3b8691861f83df3e616c5a3888f907bce6ab548effdbecc0ca5d4fe108b532acba90d0
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,10 @@ All notable changes to the Civo CLI will be documented in this file.
|
|
3
3
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
5
5
|
|
6
|
+
## [0.5.1] - 2019-10-24
|
7
|
+
### Fixed
|
8
|
+
- `civo application show SOMETHING` crashed if it had no dependencies.
|
9
|
+
|
6
10
|
## [0.5.0] - 2019-10-23
|
7
11
|
### Fixed
|
8
12
|
- `civo k3s ls` and `civo k3s show` shouldn't show a recommended upgrade to a non-default version.
|
data/Gemfile.lock
CHANGED
data/lib/civo_cli/version.rb
CHANGED
@@ -48,7 +48,9 @@ module CivoCLI
|
|
48
48
|
puts " Maintainer : #{app.maintainer}"
|
49
49
|
puts " URL : #{app.url}"
|
50
50
|
puts " Description : #{app.description}"
|
51
|
-
|
51
|
+
if app.dependencies
|
52
|
+
puts " Dependencies : #{app.dependencies.join(", ")}"
|
53
|
+
end
|
52
54
|
rescue Flexirest::HTTPException => e
|
53
55
|
puts e.result.reason.colorize(:red)
|
54
56
|
exit 1
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: civo_cli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andy Jeffries
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: exe
|
12
12
|
cert_chain: []
|
13
|
-
date: 2019-10-
|
13
|
+
date: 2019-10-24 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rake
|