Small documentation update, including source attribution.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4418 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
gsinclair 2003-08-21 09:56:21 +00:00
parent f3f7c40c49
commit be7c88a3e2

View File

@ -2,6 +2,9 @@
# = net/ftp.rb # = net/ftp.rb
# #
# Written by Shugo Maeda <shugo@ruby-lang.org>. # 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. # This library is distributed under the terms of the Ruby license.
# You can freely distribute/modify this library. # You can freely distribute/modify this library.
@ -55,13 +58,13 @@ module Net # :nodoc:
# == Major Methods # == Major Methods
# #
# The following are the methods most likely to be useful to users: # The following are the methods most likely to be useful to users:
# - #connect # - FTP::open
# - #login (note: <tt>FTP.new</tt> can do both connect and login instead)
# - #getbinaryfile # - #getbinaryfile
# - #gettextfile # - #gettextfile
# - #putbinaryfile # - #putbinaryfile
# - #puttextfile # - #puttextfile
# - #chdir # - #chdir
# - #nlst
# - #size # - #size
# - #rename # - #rename
# - #delete # - #delete