diff options
author | gsinclair <gsinclair@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-08-21 09:56:21 +0000 |
---|---|---|
committer | gsinclair <gsinclair@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-08-21 09:56:21 +0000 |
commit | 6b5b1c09e32d12dff12e49de7f31330664d83d2a (patch) | |
tree | c1f06ec3261bcd0b486275092cba3a88c35ec518 | |
parent | 45b25be6c225d7cbfcef646e1512a9c548977a27 (diff) | |
download | ruby-6b5b1c09e32d12dff12e49de7f31330664d83d2a.tar.gz ruby-6b5b1c09e32d12dff12e49de7f31330664d83d2a.tar.xz ruby-6b5b1c09e32d12dff12e49de7f31330664d83d2a.zip |
Small documentation update, including source attribution.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4418 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | lib/net/ftp.rb | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/net/ftp.rb b/lib/net/ftp.rb index 3baa5d02e..203029ed3 100644 --- a/lib/net/ftp.rb +++ b/lib/net/ftp.rb @@ -2,6 +2,9 @@ # = net/ftp.rb # # Written by Shugo Maeda <shugo@ruby-lang.org>. +# +# Documentation by Gavin Sinclair, sourced from "Programming Ruby" (Hunt/Thomas) +# and "Ruby In a Nutshell" (Matsumoto), used with permission. # # This library is distributed under the terms of the Ruby license. # You can freely distribute/modify this library. @@ -55,13 +58,13 @@ module Net # :nodoc: # == Major Methods # # The following are the methods most likely to be useful to users: - # - #connect - # - #login (note: <tt>FTP.new</tt> can do both connect and login instead) + # - FTP::open # - #getbinaryfile # - #gettextfile # - #putbinaryfile # - #puttextfile # - #chdir + # - #nlst # - #size # - #rename # - #delete |