summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
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