vagrant-routes 0.0.3 → 0.0.4
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/lib/command.rb +2 -2
- data/vagrant-routes.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 57564926862bf99c5d4aa62b9ad7b91710eab321
|
|
4
|
+
data.tar.gz: 887f8cd0dbc8e0da576942e32165eea298a60284
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 35f0bedb54c65e388b1fbf0418abbe2e9234cbfe83d715025ad8ad6915ebb94d717fccbb7cee1a11bdca8c48b9f351ecd4225d4dac53a65a77532d01b6998923
|
|
7
|
+
data.tar.gz: b37d4cdcb9407d0ebc383f5fe853bff5cfb58fd20ab9957ec1423f7ff2c9f427770e0f6a3fc9a0db6001c599f159a733dede19720dd217c2e21d681d53f1ed9a
|
data/lib/command.rb
CHANGED
|
@@ -19,7 +19,7 @@ module VagrantPlugins
|
|
|
19
19
|
end
|
|
20
20
|
rescue NoRoutesError
|
|
21
21
|
@env.ui.error('No routes are defined.')
|
|
22
|
-
rescue
|
|
22
|
+
rescue => e
|
|
23
23
|
case @result
|
|
24
24
|
# We are not signed-in
|
|
25
25
|
when /.*the server has asked for the client to provide credentials.*/
|
|
@@ -28,7 +28,7 @@ module VagrantPlugins
|
|
|
28
28
|
when /.*oc: command not found.*/
|
|
29
29
|
@env.ui.error('oc command was not found on guest. Is OpenShift installed?')
|
|
30
30
|
else
|
|
31
|
-
@env.ui.error("Unexpected error occured:\n#{
|
|
31
|
+
@env.ui.error("Unexpected error occured:\n#{e.message}")
|
|
32
32
|
end
|
|
33
33
|
end
|
|
34
34
|
|
data/vagrant-routes.gemspec
CHANGED