mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/README, lib/cgi/ftplib.rb, lib/telnet.rb: Delete ftplib.rb
and telnet.rb. It has been quite some time sinc they were obsoleted and made to emit warnings. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3180 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e34137b5cb
commit
c3cd615aa4
5 changed files with 6 additions and 27 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
Fri Dec 20 05:06:49 2002 Akinori MUSHA <knu@iDaemons.org>
|
||||||
|
|
||||||
|
* lib/README, lib/cgi/ftplib.rb, lib/telnet.rb: Delete ftplib.rb
|
||||||
|
and telnet.rb. It has been quite some time sinc they were
|
||||||
|
obsoleted and made to emit warnings.
|
||||||
|
|
||||||
Fri Dec 20 04:58:22 2002 Akinori MUSHA <knu@iDaemons.org>
|
Fri Dec 20 04:58:22 2002 Akinori MUSHA <knu@iDaemons.org>
|
||||||
|
|
||||||
* lib/tempfile.rb: Embed Rdoc style comments.
|
* lib/tempfile.rb: Embed Rdoc style comments.
|
||||||
|
|
2
MANIFEST
2
MANIFEST
|
@ -129,7 +129,6 @@ lib/finalize.rb
|
||||||
lib/find.rb
|
lib/find.rb
|
||||||
lib/forwardable.rb
|
lib/forwardable.rb
|
||||||
lib/ftools.rb
|
lib/ftools.rb
|
||||||
lib/ftplib.rb
|
|
||||||
lib/getoptlong.rb
|
lib/getoptlong.rb
|
||||||
lib/getopts.rb
|
lib/getopts.rb
|
||||||
lib/importenv.rb
|
lib/importenv.rb
|
||||||
|
@ -215,7 +214,6 @@ lib/shell/version.rb
|
||||||
lib/shellwords.rb
|
lib/shellwords.rb
|
||||||
lib/singleton.rb
|
lib/singleton.rb
|
||||||
lib/sync.rb
|
lib/sync.rb
|
||||||
lib/telnet.rb
|
|
||||||
lib/tempfile.rb
|
lib/tempfile.rb
|
||||||
lib/thread.rb
|
lib/thread.rb
|
||||||
lib/thwait.rb
|
lib/thwait.rb
|
||||||
|
|
|
@ -19,7 +19,6 @@ finalize.rb adds finalizer to the object
|
||||||
find.rb traverses directory tree
|
find.rb traverses directory tree
|
||||||
forwardable.rb explicit delegation library
|
forwardable.rb explicit delegation library
|
||||||
ftools.rb file tools
|
ftools.rb file tools
|
||||||
ftplib.rb obsolete - use net/ftp
|
|
||||||
getoptlong.rb GNU getoptlong compatible
|
getoptlong.rb GNU getoptlong compatible
|
||||||
getopts.rb parses command line options (use getoptlong)
|
getopts.rb parses command line options (use getoptlong)
|
||||||
importenv.rb imports environment variables as global variables
|
importenv.rb imports environment variables as global variables
|
||||||
|
@ -58,7 +57,6 @@ shell.rb runs commands and does pipeline operations like shell
|
||||||
shellwords.rb split into words like shell
|
shellwords.rb split into words like shell
|
||||||
singleton.rb singleton design pattern library
|
singleton.rb singleton design pattern library
|
||||||
sync.rb 2 phase lock
|
sync.rb 2 phase lock
|
||||||
telnet.rb obsolete - use net/telnet
|
|
||||||
tempfile.rb temporary file with automatic removal
|
tempfile.rb temporary file with automatic removal
|
||||||
time.rb RFC2822, RFC2616, ISO8601 style time formatting/parsing
|
time.rb RFC2822, RFC2616, ISO8601 style time formatting/parsing
|
||||||
thread.rb thread support
|
thread.rb thread support
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
#
|
|
||||||
# ftplib.rb
|
|
||||||
#
|
|
||||||
|
|
||||||
$stderr.puts 'Warning: ftplib.rb is obsolete: use net/ftp'
|
|
||||||
|
|
||||||
require 'net/ftp'
|
|
||||||
|
|
||||||
FTP = ::Net::FTP
|
|
||||||
FTPError = ::Net::FTPError
|
|
||||||
FTPReplyError = ::Net::FTPReplyError
|
|
||||||
FTPTempError = ::Net::FTPTempError
|
|
||||||
FTPPermError = ::Net::FTPPermError
|
|
||||||
FTPProtoError = ::Net::FTPProtoError
|
|
|
@ -1,9 +0,0 @@
|
||||||
#
|
|
||||||
# telnet.rb
|
|
||||||
#
|
|
||||||
|
|
||||||
$stderr.puts 'Warning: telnet.rb is obsolete: use net/telnet'
|
|
||||||
|
|
||||||
require 'net/telnet'
|
|
||||||
|
|
||||||
Telnet = ::Net::Telnet
|
|
Loading…
Add table
Reference in a new issue