summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorgsinclair <gsinclair@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-08-21 09:56:21 +0000
committergsinclair <gsinclair@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-08-21 09:56:21 +0000
commitbe7c88a3e2c6f5ff0eb0706901bc81380ef1a6df (patch)
treec1f06ec3261bcd0b486275092cba3a88c35ec518 /lib
parentf3f7c40c492b791eecae4980eb817eb1aae02442 (diff)
Small documentation update, including source attribution.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4418 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/net/ftp.rb7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/net/ftp.rb b/lib/net/ftp.rb
index 3baa5d02e7..203029ed3d 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