net-ftp 0.3.0 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/net/ftp.rb +5 -4
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4bdb62501e5bd663135f659619281d1723480af308380d93472dec43e0628814
|
4
|
+
data.tar.gz: 998189c1c9c3e31cfd0eeefae6ef927bc613a57ac6fd1715a87b1134b56c21f6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fc3d71fed1b588a29759c6c5cca1158a61b962044da249befaab849fc20be7dafcb23487c7eedc9d109cf651cac9f7c1fa9d97ad2bfdca5460db9c36fb0bf6d3
|
7
|
+
data.tar.gz: 401e0f00b8e70ab5f54b9f63c51946d2af029992a7f114e4a08031619de922e75841d52cab3740468c9253135119df0846f4ba733a9df2a1e6a9ae4355c11a68
|
data/lib/net/ftp.rb
CHANGED
@@ -85,7 +85,7 @@ module Net
|
|
85
85
|
end
|
86
86
|
|
87
87
|
# :stopdoc:
|
88
|
-
VERSION = "0.3.
|
88
|
+
VERSION = "0.3.2"
|
89
89
|
FTP_PORT = 21
|
90
90
|
CRLF = "\r\n"
|
91
91
|
DEFAULT_BLOCKSIZE = BufferedIO::BUFSIZE
|
@@ -577,8 +577,9 @@ module Net
|
|
577
577
|
if !resp.start_with?("1")
|
578
578
|
raise FTPReplyError, resp
|
579
579
|
end
|
580
|
-
|
581
|
-
conn
|
580
|
+
rescue Exception
|
581
|
+
conn&.close
|
582
|
+
raise
|
582
583
|
end
|
583
584
|
else
|
584
585
|
sock = makeport
|
@@ -1396,7 +1397,7 @@ module Net
|
|
1396
1397
|
if !resp.start_with?("227")
|
1397
1398
|
raise FTPReplyError, resp
|
1398
1399
|
end
|
1399
|
-
if m =
|
1400
|
+
if m = /(?<host>\d+(?:,\d+){3}),(?<port>\d+,\d+)/.match(resp)
|
1400
1401
|
if @use_pasv_ip
|
1401
1402
|
host = parse_pasv_ipv4_host(m["host"])
|
1402
1403
|
else
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: net-ftp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shugo Maeda
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-12-
|
11
|
+
date: 2023-12-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: net-protocol
|
@@ -61,7 +61,7 @@ licenses:
|
|
61
61
|
metadata:
|
62
62
|
homepage_uri: https://github.com/ruby/net-ftp
|
63
63
|
source_code_uri: https://github.com/ruby/net-ftp
|
64
|
-
post_install_message:
|
64
|
+
post_install_message:
|
65
65
|
rdoc_options: []
|
66
66
|
require_paths:
|
67
67
|
- lib
|
@@ -77,7 +77,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
77
77
|
version: '0'
|
78
78
|
requirements: []
|
79
79
|
rubygems_version: 3.5.0.dev
|
80
|
-
signing_key:
|
80
|
+
signing_key:
|
81
81
|
specification_version: 4
|
82
82
|
summary: Support for the File Transfer Protocol.
|
83
83
|
test_files: []
|