summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* fix rdocdave2004-05-122-0/+6
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6292 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Fix for 'incomplete bug fix' for 1.41.shigek2004-05-111-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6291 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/net/protocol.rb (each_crlf_line): remove junk line.aamine2004-05-102-1/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6290 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Change symbol lookup scheme in HTML generationdave2004-05-102-4/+17
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6289 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (eval): warning during eval should not cause deadlock.matz2004-05-104-5/+16
| | | | | | | | | | [ruby-talk:98651] * eval.c (rb_eval): raise TypeError exception for superclass mismatch. [ruby-dev:39567] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6288 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2004-05-10eban2004-05-101-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6287 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Search parent for unqualified constantsdave2004-05-102-0/+13
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6286 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/net/pop.rb (loggin): append "\n".aamine2004-05-092-1/+9
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6285 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/net/ftp.rb: ported documentation improvement from 1.8 branchgsinclair2004-05-096-478/+520
| | | | | | | | | | * lib/net/imap.rb: ditto * lib/net/pop.rb: ditto * lib/net/smtp.rb: ditto * lib/net/telnet.rb: ditto git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6284 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/ruby/test_float.rb: added test_strtod to test Float("0").nahi2004-05-092-0/+16
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6283 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/yaml/store.rb: use FileUtils::copy.eban2004-05-092-1/+6
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6280 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2004-05-09eban2004-05-091-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6279 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* MANIFEST: remove regex.c.eban2004-05-091-1/+0
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6278 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * regex.c : removed unused file.ksaito2004-05-092-26/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6277 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * io.c (rb_f_open): open should not ignore block when "to_open"matz2004-05-086-14/+17
| | | | | | | | | method is used. [ruby-dev:23478] * ext/dbm/dbm.c (fdbm_modify): typo fixed. [ruby-dev:23473] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6276 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2004-05-08eban2004-05-081-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6275 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * win32ole.c: add RDoc style comment.suke2004-05-081-61/+183
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6274 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* add a test for Kernel.open(Pathname.new(...)) { ... }.akr2004-05-071-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6273 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/fileutils.rb (mv): new option `force'. [ruby-talk:99457]aamine2004-05-072-66/+111
| | | | | | | | * lib/fileutils.rb: new method for command option reflection: FileUtils.commands, .options, .have_option?, .options_of, .collect_methods. * lib/fileutils.rb: module Verbose, NoWrite, DryRun do not have option flags @fileutils_verbose and @fileutils_noop, they make no sense. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6271 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Allow multiple arguments to includedave2004-05-072-4/+13
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6270 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/fileutils.rb (fu_list): Array() breaks pathes including "\n". ↵aamine2004-05-073-1/+26
| | | | | | | | | [ruby-core:02843] * test/fileutils/test_fileutils.rb (mkdir): test "\n" in path. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6268 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2004-05-07eban2004-05-071-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6267 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* add freeze test for dbm and gdbm.akr2004-05-074-1/+40
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6264 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * parse.y (string_content): turn off NODE_NEWLINE flag to avoidmatz2004-05-0722-109/+270
| | | | | | | | | | | | | | | | | | | | | | | unnecessary line trace for inlined expression. (ruby-bugs PR#1320) * numeric.c (flo_to_s): tweak output string based to preserve decimal point and to remove trailing zeros. [ruby-talk:97891] * string.c (rb_str_index_m): use unsigned comparison for T_FIXNUM search. [ruby-talk:97342] * hash.c (rb_hash_equal): returns true if two hashes have same set of key-value set. [ruby-talk:97559] * hash.c (rb_hash_eql): returns true if two hashes are equal and have same default values. * string.c (rb_str_equal): always returns true or false, never returns nil. [ruby-dev:23404] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6262 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * util.c (ruby_strtod): 0.0000000000000000001 == 0.0 should be false.ocean2004-05-072-27/+26
| | | | | | | [ruby-talk:99318] [ruby-dev:23465] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6261 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* use numerichost if cannot resolve hostnameseki2004-05-062-5/+10
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6259 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/tk/tkutil.c (get_eval_string_core): bug fix. [ruby-dev:23466]nagai2004-05-062-1/+5
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6256 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2004-05-06eban2004-05-061-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6255 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* MANIFEST: add lib/xmlrpc/README.txt.eban2004-05-061-0/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6254 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/yaml/rubytypes.rb (to_yaml): added instance variable handlingwhy2004-05-0614-311/+456
| | | | | | | | | | | | | | | for Ranges, Strings, Structs, Regexps. * lib/yaml/rubytypes.rb (to_yaml_fold): new method for setting a String's flow style. * lib/yaml.rb (YAML::object_maker): now uses Object.allocate. * ext/syck/gram.c: fixed transfer methods on structs, broke it last commit. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6252 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * dir.c (rb_push_glob): simplified code (not change behavior)ocean2004-05-062-6/+10
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6251 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/extmk.rb: get rid of side effect of Config.expand, patched bynobu2004-05-062-2/+7
| | | | | | | <tttt01@infoseek.jp> (ruby-bugs:PR#597) git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6250 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/net/imap.rb (string): accept NIL.shugo2004-05-062-8/+33
| | | | | | | * lib/net/imap.rb (body_type_basic): allow body-fields omissions. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6249 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Don't include &block if we have yield parametersdave2004-05-054-0/+18
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6248 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* use recv instead of recvfromseki2004-05-042-1/+5
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6247 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/gserver.rb: documentedgsinclair2004-05-043-2/+112
| | | | | | | * lib/xmlrpc/README.txt: introduced for documentation purposes git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6245 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Fix parsing problem with yield within blockdave2004-05-032-0/+7
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6242 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/fileutils/test_fileutils.rb (rm_f, rm_r): test :force flag.aamine2004-05-022-0/+23
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6241 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2004-05-02eban2004-05-021-4/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6240 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * renewal Ruby/Tknagai2004-05-01247-10978/+27053
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6237 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2004-04-30eban2004-04-301-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6236 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * time.c (SIZEOF_TIME_T): support SIZEOF_TIME_T == SIZEOF_INT.eban2004-04-302-0/+6
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * oniguruma.h, regparse.c: imported Oni Guruma 2.2.8.ksaito2004-04-273-2/+9
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6234 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* This commit was generated by cvs2svn to compensate for changes in r6231,ksaito2004-04-273-25/+44
| | | | | | | which included commits to RCS files with non-trunk default branches. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6232 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * oniguruma.h, regparse.c: imported Oni Guruma 2.2.7.ksaito2004-04-273-189/+14
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6230 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* This commit was generated by cvs2svn to compensate for changes in r6227,ksaito2004-04-273-44/+25
| | | | | | | which included commits to RCS files with non-trunk default branches. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6228 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* This commit was generated by cvs2svn to compensate for changes in r6225,ksaito2004-04-273-41/+73
| | | | | | | which included commits to RCS files with non-trunk default branches. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6226 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * common.mk: LIBURUBY_A is needed for extconf.rb even whennobu2004-04-272-1/+6
| | | | | | | cross-compiling. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6224 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2004-04-27usa2004-04-271-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6223 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/yaml/rubytypes.rb: passing Range tests.why2004-04-268-312/+432
| | | | | | | | | | | | | | | | | | | * ext/syck/syck.h: version 0.44. * ext/syck/gram.c: transfers no longer open an indentation. fixed transfers which precede blocks. * ext/syck/token.c: ditto. * ext/syck/syck.c: fixed segfault if an anchor has been released already. * ext/syck/node.c (syck_free_members): organized order of free'd nodes. * ext/syck/rubyext.c (syck_emitter_write_m): test for proper string with StringValue. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6221 b2dd03c8-39d4-4d8f-98ff-823fe69b080e