sftp_wrapper 0.2.1 → 0.2.2
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 +8 -0
- data/lib/sftp_wrapper/curl.rb +2 -0
- data/lib/sftp_wrapper/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: 40c2b5e4f278049f1b9f53d5a40dccb2a898492a06ef3bf9d6dff9016f5d22ca
|
|
4
|
+
data.tar.gz: 778b727f94eb208b3854b68e023df848a77b83814ee9326768f940a72facd5f0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a1ec19ea75cf25c869cd74ed29ec8325838b2892d098a8791522dab09b64f00206759992075f1f951e4e1b831a635a4134f24e1d04c990baad781342f31452bc
|
|
7
|
+
data.tar.gz: 304b31c3fc6a5477c57a8e09dfc251dad6311e18083f7f9208b2cefbc992ccedd3fb65bf5a12fdf6bec305c75ea4166f7f28f8cd66ded1573026fc337c0eae1d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
====
|
|
3
3
|
|
|
4
|
+
[v0.2.2](https://github.com/koshigoe/sftp_wrapper/releases/tag/v0.2.2)
|
|
5
|
+
----
|
|
6
|
+
|
|
7
|
+
### Enhancements
|
|
8
|
+
|
|
9
|
+
- [#3](https://github.com/koshigoe/sftp_wrapper/pull/3) handle `curl` exit status 3.
|
|
10
|
+
|
|
11
|
+
|
|
4
12
|
[v0.2.1](https://github.com/koshigoe/sftp_wrapper/releases/tag/v0.2.1)
|
|
5
13
|
----
|
|
6
14
|
|
data/lib/sftp_wrapper/curl.rb
CHANGED
|
@@ -11,6 +11,8 @@ module SftpWrapper
|
|
|
11
11
|
|
|
12
12
|
# lookup table of curl errors.
|
|
13
13
|
CURL_ERRORS = {
|
|
14
|
+
# URL malformed. The syntax was not correct.
|
|
15
|
+
3 => SftpWrapper::Errors::ConnectionError,
|
|
14
16
|
# Couldn't resolve proxy. The given proxy host could not be resolved.
|
|
15
17
|
5 => SftpWrapper::Errors::ConnectionError,
|
|
16
18
|
# Couldn't resolve host. The given remote host was not resolved.
|
data/lib/sftp_wrapper/version.rb
CHANGED