civo_cli 0.3.0 → 0.3.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +1 -1
- data/lib/blueprint.rb +11 -8
- data/lib/civo_cli/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 131200df08997f0f66828fae0f0b918db6a1a2e949faba9f23866708c226d7b2
|
|
4
|
+
data.tar.gz: 255cebd582afa3007583d73dbec7baea581573e0e0fe2bebc1f085c8c06ae010
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 76d5b837af1d0d150652b0f311dae71dcfe8e9798d49fbe3c6be3160367b06d04a54692b25349c4b517df4788fa8e0d06f52696f369743a62c1c2c230b3c7e2d
|
|
7
|
+
data.tar.gz: 5c10d7b6cfbdcebfd9b728480088d7bebc32500df150459ee86d9135cdb491070126f7cdb42d7ff0f230744ec9f51c68864fb4b42967518f90049098cf505814
|
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.3.1] - 2019-07-05
|
|
7
|
+
### Fixed
|
|
8
|
+
- Verbose option to blueprint show was ignored and it was always verbose
|
|
9
|
+
|
|
6
10
|
## [0.3.0] - 2019-07-05
|
|
7
11
|
### Added
|
|
8
12
|
- Verbose option to blueprint show
|
data/Gemfile.lock
CHANGED
data/lib/blueprint.rb
CHANGED
|
@@ -31,14 +31,17 @@ module CivoCLI
|
|
|
31
31
|
puts "-" * 29 + " CONTENT " + "-" * 29
|
|
32
32
|
puts ""
|
|
33
33
|
puts blueprint.dsl_content
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
34
|
+
|
|
35
|
+
unless options["verbose"].nil?
|
|
36
|
+
puts ""
|
|
37
|
+
puts "-" * 29 + " SCRIPT " + "-" * 29
|
|
38
|
+
puts ""
|
|
39
|
+
puts blueprint.script_content
|
|
40
|
+
puts ""
|
|
41
|
+
puts "-" * 29 + " LAST RAN " + "-" * 29
|
|
42
|
+
puts ""
|
|
43
|
+
puts blueprint.last_build_script_output
|
|
44
|
+
end
|
|
42
45
|
rescue Flexirest::HTTPForbiddenClientException => e
|
|
43
46
|
puts "Sorry, you don't have access to this feature".colorize(:red)
|
|
44
47
|
exit 1
|
data/lib/civo_cli/version.rb
CHANGED