summaryrefslogtreecommitdiff
path: root/lib/net
diff options
context:
space:
mode:
authorzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-11-07 17:38:18 +0000
committerzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-11-07 17:38:18 +0000
commit8adbcb66341df54c5f75229779a3c574c7fcc0f7 (patch)
tree9dc1a416ec7ecf86cf88a9b5fa450bd93447a9ef /lib/net
parent6720c0aeeba1921010ae96325b1d4caba33794c5 (diff)
* lib/net/ftp.rb: [DOC] Document Net::FTP.mdtm and .set_socket and fix
spelling typo, based on patch by @artfuldodger [Fixes GH-426] https://github.com/ruby/ruby/pull/426 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43571 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/net')
-rw-r--r--lib/net/ftp.rb14
1 files changed, 8 insertions, 6 deletions
diff --git a/lib/net/ftp.rb b/lib/net/ftp.rb
index 3fb2fda34f..c22b9636d5 100644
--- a/lib/net/ftp.rb
+++ b/lib/net/ftp.rb
@@ -251,8 +251,9 @@ module Net
end
#
- # WRITEME or make private
+ # Set the socket used to connect to the FTP server.
#
+ # May raise FTPReplyError if +get_greeting+ is false.
def set_socket(sock, get_greeting = true)
synchronize do
@sock = sock
@@ -310,7 +311,7 @@ module Net
end
private :getmultiline
- # Recieves a response from the destination host.
+ # Receives a response from the destination host.
#
# Returns the response code or raises FTPTempError, FTPPermError, or
# FTPProtoError
@@ -330,7 +331,7 @@ module Net
end
private :getresp
- # Recieves a response.
+ # Receives a response.
#
# Raises FTPReplyError if the first position of the response code is not
# equal 2.
@@ -897,7 +898,10 @@ module Net
end
#
- # Issues the MDTM command. TODO: more info.
+ # Returns the raw last modification time of the (remote) file in the format
+ # "YYYYMMDDhhmmss" (MDTM command).
+ #
+ # Use +mtime+ if you want a parsed Time instance.
#
def mdtm(filename)
resp = sendcmd("MDTM " + filename)
@@ -1114,5 +1118,3 @@ end
# Documentation comments:
# - sourced from pickaxe and nutshell, with improvements (hopefully)
-# - three methods should be private (search WRITEME)
-# - two methods need more information (search TODO)