vps_cli 0.1.9 → 0.1.10
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 +7 -1
- data/lib/vps_cli/cli.rb +2 -2
- data/lib/vps_cli/helpers/github_http.rb +0 -2
- data/lib/vps_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: 8adb04fa7862632f1c64cf56e454e9726a8d4512b50132bc80e516a6a55692b8
|
|
4
|
+
data.tar.gz: 3750bce151e6f2f754fa6f750fc51c3863c2e3af14b651b457bf2ba909be7432
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 118d57c61f89cc812ec7f253924f855ea6ae10f340135e6993e8e02fa24e6e176da1a7c6e768e4ccfc764538ddff8be695cc3f0256674467c1fcb4849b71aa17
|
|
7
|
+
data.tar.gz: 9f6571578692ce66357d42d48ef5326f0e1ed3293112631120f48e9b8816a09c5c892b21e7f0baaf546d4c9de6ca5d8e3167dd5f8ff8d1e5d72c26f787ca2502
|
data/CHANGELOG.md
CHANGED
|
@@ -5,7 +5,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
-
## [1.
|
|
8
|
+
## [0.1.10] - 05-26-2019
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- Fixed an issue with printing errors
|
|
12
|
+
- Fixed an issue with printing github public keys to command line
|
|
13
|
+
|
|
14
|
+
## [0.1.9] - 05-26-2019
|
|
9
15
|
|
|
10
16
|
### Added
|
|
11
17
|
- This changelog
|
data/lib/vps_cli/cli.rb
CHANGED
|
@@ -25,7 +25,7 @@ module VpsCli
|
|
|
25
25
|
|
|
26
26
|
Access.provide_credentials
|
|
27
27
|
|
|
28
|
-
print_errors
|
|
28
|
+
VpsCli.print_errors
|
|
29
29
|
end
|
|
30
30
|
|
|
31
31
|
desc 'init [-c (File)]', 'Creates a default vps_cli configuration file in the home directory'
|
|
@@ -66,7 +66,7 @@ module VpsCli
|
|
|
66
66
|
|
|
67
67
|
return if VpsCli.errors.empty?
|
|
68
68
|
|
|
69
|
-
print_errors
|
|
69
|
+
VpsCli.print_errors
|
|
70
70
|
end
|
|
71
71
|
|
|
72
72
|
desc 'login', 'pushes keys from your ~/.credentials.yaml file'
|
data/lib/vps_cli/version.rb
CHANGED