k3cloud-sdk 0.4.5 → 0.4.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CODE_OF_CONDUCT.md +4 -2
- data/Gemfile.lock +1 -1
- data/lib/k3cloud/k3cloud_api.rb +1 -1
- data/lib/k3cloud/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: 148509b4c220bf006114ffc6d60dec5b540abe2e33761dad837ef395e3553923
|
4
|
+
data.tar.gz: 93a6ae34b81c0998a1b02cc9405404ddae16eb4238497bf042cbd00fe53e5726
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b2c060e153416fd6bb8fcf9d3b3c06127a4beb9fde7a66d276742d60b422d929d2aa6d1f7dbfdf8cd8cc17175f1c48197f3c022707fed89bd73601829713f931
|
7
|
+
data.tar.gz: 9505afcb1b6ff35e631abec3d9f97db35c8add981c6046ddfbac17560c9aaea5ffd29b6c62d548fd0e51e98e039f0c82a141f15e96e2d7e24a8b14cc6a2fe3d6
|
data/CODE_OF_CONDUCT.md
CHANGED
@@ -20,7 +20,7 @@ Examples of unacceptable behavior include:
|
|
20
20
|
|
21
21
|
* The use of sexualized language or imagery, and sexual attention or
|
22
22
|
advances of any kind
|
23
|
-
* Trolling, insulting or derogatory comments, and personal or political attacks
|
23
|
+
* Trolling, insulting, or derogatory comments, and personal or political attacks
|
24
24
|
* Public or private harassment
|
25
25
|
* Publishing others' private information, such as a physical or email
|
26
26
|
address, without their explicit permission
|
@@ -39,7 +39,9 @@ This Code of Conduct applies within all community spaces, and also applies when
|
|
39
39
|
|
40
40
|
## Enforcement
|
41
41
|
|
42
|
-
Instances of abusive, harassing,
|
42
|
+
Instances of abusive, harassing,
|
43
|
+
or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at zevinto@163.com.
|
44
|
+
All complaints will be reviewed and investigated promptly and fairly.
|
43
45
|
|
44
46
|
All community leaders are obligated to respect the privacy and security of the reporter of any incident.
|
45
47
|
|
data/Gemfile.lock
CHANGED
data/lib/k3cloud/k3cloud_api.rb
CHANGED
@@ -136,7 +136,7 @@ module K3cloud
|
|
136
136
|
private
|
137
137
|
|
138
138
|
def handle_query_result(rows)
|
139
|
-
if !rows[0].nil? && (result = rows[0][0]).is_a?(Hash)
|
139
|
+
if !rows[0].nil? && !rows[0].empty? && (result = rows[0][0]).is_a?(Hash)
|
140
140
|
K3cloud.logger.error({ errmsg: result, type: 'error', lever: 'ERROR' })
|
141
141
|
[]
|
142
142
|
else
|
data/lib/k3cloud/version.rb
CHANGED