From 6b5b1c09e32d12dff12e49de7f31330664d83d2a Mon Sep 17 00:00:00 2001 From: gsinclair Date: Thu, 21 Aug 2003 09:56:21 +0000 Subject: Small documentation update, including source attribution. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4418 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/net/ftp.rb | 7 +++++-- 1 file 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 . +# +# 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: FTP.new can do both connect and login instead) + # - FTP::open # - #getbinaryfile # - #gettextfile # - #putbinaryfile # - #puttextfile # - #chdir + # - #nlst # - #size # - #rename # - #delete -- cgit