civo_cli 0.5.0 → 0.5.1

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: f8c1f17bb6f4640b31e24733f8808a1d9e64134d2cb052c7e537cd8cd28b89b5
4
- data.tar.gz: 7124e52fff64c0a9251a94616b6ca717a07134f0437ed4c2f3123c80eed9232b
3
+ metadata.gz: bb0a1fadf278732284aa7782394d4e0d3051c745200fb61360e6eeed265db36c
4
+ data.tar.gz: fd8e3b53a65a35df8825e2c5a5ed3a0819034be28be1e337f12db3d4b36ab7b4
5
5
  SHA512:
6
- metadata.gz: 400d92d3075fc619fdc6ae370e18c1f7e523a9ffa094b4869218e3b03c9df9ab41bda1eb763b11afcb4d3f62590cac2f4fb4a31d2be3e3d9fd6db87daf17da45
7
- data.tar.gz: 75c4bc2e96bc1e68f3a7e29d7fc06cabfe9afb05d417df3df60b2f022853e9ed9f29e759e0aa64a48eb7402d61a2cbb66f214225e0b9836c507644d7a774a505
6
+ metadata.gz: 9c00dcd9bee1ae08aa18303f9f938f7085640b183053aa50a54adc60b1aadcad51334ef7f6f5a1119daa95b72b0e0fe24c3943c5eea9403dbdfb0c271bc89eb7
7
+ data.tar.gz: d22f8045cabde6a0540d719d9d61735059bea895632416c6695dcd94bb3b8691861f83df3e616c5a3888f907bce6ab548effdbecc0ca5d4fe108b532acba90d0
@@ -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.
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- civo_cli (0.5.0)
4
+ civo_cli (0.5.1)
5
5
  bundler (~> 1.17)
6
6
  civo (>= 1.2.9)
7
7
  colorize
@@ -1,3 +1,3 @@
1
1
  module CivoCLI
2
- VERSION = "0.5.0"
2
+ VERSION = "0.5.1"
3
3
  end
@@ -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
- puts " Dependencies : #{app.dependencies.join(", ")}"
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.0
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-23 00:00:00.000000000 Z
13
+ date: 2019-10-24 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rake