-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update to 1.8.0 preview5 (but incomplete yet).
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
matz
committed
Jul 30, 2003
1 parent
32fcbb5
commit f3e173c
Showing
1 changed file
with
92 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,93 @@ | ||
This file is not actively maintained. See ChangeLog for recent changes. | ||
|
||
: open-uri.rb | ||
: -W option | ||
|
||
new option to specify warning level. -W0 to shut up warnings, -W1 for normal level, | ||
-W3 for verbose level. -w equals to -W1. | ||
|
||
: Marshal to use marshal_dump and marshal_load | ||
|
||
if a dumping object responds to 'marshal_dump', Marshal.dump calls | ||
it, and dumps object returned. Marshal.load allocates a new instance | ||
using "allocate", then calls its "marshal_load" with dumped data. | ||
|
||
: lib/un | ||
|
||
Imported. Used like 'ruby -run -e cp -- -p foo bar'. Nest, isn't it? | ||
|
||
: lib/webrick | ||
|
||
Imported. Generic Internet server kit. | ||
|
||
: $stdin, $stdout, $stderr | ||
|
||
can be assignable again. the original stdio are preserved as STDIN, | ||
STDOUT, STDERR. | ||
|
||
: multiple Tk interpreter | ||
|
||
to allow safe Tk, etc. | ||
|
||
: ext/openssl | ||
|
||
Imported. | ||
|
||
: ext/io/wait | ||
|
||
Imported. | ||
|
||
: ext/bigdecimal | ||
|
||
Imported. | ||
|
||
: Thread#group | ||
|
||
new method to get belonging ThreadGroup. | ||
|
||
: Kernel#warn(message) | ||
|
||
a method to give warnings. | ||
|
||
: Process::detach(pid) | ||
|
||
new method to detach child process. child process will be "wait"ed | ||
automagically. | ||
|
||
: Object#instance_variable_set, Object#instance_variable_get | ||
|
||
added. | ||
|
||
: ext/Win32API/lib/win32/registry | ||
|
||
added. | ||
|
||
: lib/open-uri | ||
|
||
Imported. This is an easy-to-use wrapper for net/http and net/ftp. | ||
|
||
: lib/tmpdir | ||
|
||
imported. add Dir::tmpdir() to determine the temporary directory. | ||
|
||
: lib/cgi.rb | ||
|
||
cgi[name] returns CGI::QueryExtension::Value that wraps string | ||
value, no longer array. | ||
|
||
: ext/syck | ||
: lib/yaml | ||
|
||
Imported. | ||
|
||
: lib/rexml | ||
|
||
Imported. | ||
|
||
: lib/xmlrpc | ||
: lib/gserver | ||
|
||
Imported | ||
|
||
: Class#inherited | ||
|
||
Method is called when Class is inherited by another class. | ||
|
@@ -16,6 +100,11 @@ This file is not actively maintained. See ChangeLog for recent changes. | |
|
||
Prints out "A inherited by B" | ||
|
||
: String#split | ||
|
||
if "sep" argument is a string, regular expression meta characters | ||
are escaped internally. | ||
|
||
: String#to_i | ||
|
||
Now accepts optional base argument. | ||
|
@@ -129,11 +218,11 @@ This file is not actively maintained. See ChangeLog for recent changes. | |
|
||
Imported. Racc runtime library. (Racc is a parser generator for ruby) | ||
|
||
: tsort module | ||
: lib/tsort | ||
|
||
Imported. Topological sorting library. | ||
|
||
: stringio module | ||
: ext/stringio | ||
|
||
Imported. Pseudo (({IO})) class from/to (({String})). | ||
|
||
|
@@ -561,12 +650,3 @@ This file is not actively maintained. See ChangeLog for recent changes. | |
|
||
Made to return "UTC" under gmtime. It used to return a platform | ||
dependent value, typically "GMT", in 1.6 and prior. | ||
|
||
To be investigated: | ||
|
||
Sat Feb 24 03:15:49 2001 Yukihiro Matsumoto <[email protected]> | ||
|
||
* io.c (set_stdin): preserve original stdin. | ||
|
||
* io.c (set_outfile): preserve original stdout/stderr. | ||
|