ocp 0.0.8 → 0.0.9
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/client/OcpClient.rb +2 -2
- 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: 70faebe8a867ab89042533f0d69dfebf6b57388f
|
4
|
+
data.tar.gz: beddf00df6300fe8899146b1e695f0371bacd92b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 992a1159ea43b5c9207e64080675540aa111c1fe830ea34879fc2855319f5fe33aba0450a94f7818795c9a06342259709953d092c5d6a1cd769afe0b4766e69f
|
7
|
+
data.tar.gz: a20d0b6d83b725cd4012fb88d3af833f0df916a864cc4c7f1ac42e4d5d9fbf34530f28e9bb7c8acb1bf5b1c8c9f02489d31b0cc3c56bdb83019907d86c3ad480
|
data/lib/client/OcpClient.rb
CHANGED
@@ -174,9 +174,9 @@ class OcpClient
|
|
174
174
|
end
|
175
175
|
rescue => exception
|
176
176
|
if @debug and !exception.nil?
|
177
|
-
puts "Exception: " << exception.response
|
177
|
+
puts "Exception: " << exception.response.to_s
|
178
178
|
end
|
179
|
-
return exception.response.code
|
179
|
+
return exception.response.code.to_s
|
180
180
|
end
|
181
181
|
|
182
182
|
if !response.nil? and @pretty
|