summaryrefslogtreecommitdiffstats
path: root/MANIFEST
Commit message (Collapse)AuthorAgeFilesLines
* * MANIFEST: add missing/fileblocks.ceban2002-03-181-0/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2222 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * re.c (rb_reg_match): should clear $~ if operand is nil.matz2002-03-141-0/+1
| | | | | | | | | | | | | * re.c (rb_reg_match2): ditto. * configure: merge Jonathan Baker's large file support patch [ruby-talk:35316], with read_all patch in [ruby-talk:35470]. * eval.c (rb_f_abort): optional message argument that be printed on termination. [new] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2200 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/tsort.rb: new file.akr2002-03-111-0/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2179 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* added uri library (uri-0.9.4)akira2002-01-101-0/+8
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1980 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* lib/pp.rb lib/prettyprint.rb: new file.akr2001-12-241-0/+2
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1936 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* add lib/time.rb.akr2001-12-101-0/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1899 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Rename *.jp to *.ja, since jp is a region code and ja is a languageknu2001-07-191-7/+7
| | | | | | | code. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1629 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* sync MANIFEST (add doc/net/http,pop,smtp).aamine2001-07-181-0/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1626 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Add LEGAL.knu2001-07-131-0/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1599 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * It is confusing to put the GPL license terms in the file COPYING;knu2001-07-111-1/+3
| | | | | | | | | | | | Rename the files COPYING and COPYING.LIB to GPL and LGPL, respectively. * While I am here, update the LGPL with the "Lesser" one. * Move the "copying" sections of the files README and README.jp to COPYING and COPYING.jp, respectively. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1586 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * MANIFEST: add doc/NEWS.eban2001-06-041-0/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1495 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Synchronize MANIFEST with reality. Add missing files.knu2001-05-261-3/+0
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1463 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * MANIFEST: add win32/dir.h .usa2001-05-251-0/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1461 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * MANIFEST: update the entries I forgot to add or remove.knu2001-05-241-4/+29
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1451 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * io.c (argf_seek_m): wrong calling sequence of rb_io_seek().matz2001-03-131-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * parse.y (cond0): no special treatment of string literal in condition. * math.c: add acos, asin, atan, conh, sinh, tanh and hypot to Math. * configure.in: check hypot availablility. * missing/hypot.c: public domain rewrite of hypot. * parse.y (warn_unless_e_option): warning condition was wrong. * parse.y (warning_unless_e_option): ditto. * enum.c (enum_all): new method 'all?', which returns true if block returns true for all elements. * enum.c (enum_any): new method 'any?', which returns true if block retruns true for any of elements. * marshal.c (marshal_load): do not give warning unless explicitly set to verbose. * eval.c (rb_exit): give string value "exit" to SystemExit. * ruby.c (proc_options): -v should not print version if proc_options called via moreswitches(). * parse.y (stmt): while/until modifier must work for empty body. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1241 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * parse.y (primary): rescue and ensure clauses should be allowedmatz2001-03-061-1/+0
| | | | | | | to appear in singleton method body. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1233 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * parse.y (parse_quotedwords): %w should allow parenthesis escape.matz2001-02-081-0/+2
| | | | | | | | | | | | | | | | | | | | | * parse.y (parse_qstring): %q should allow terminator escape. * re.c (rb_reg_options): new method to give an option values. * parse.y (cond0): disable special treating of integer literal in conditional unless option -e is supplied. changes current behavior. experimental. * parse.y (cond0): give warning for string/integer literals and dot operators in conditionals unless option -e is supplied. * re.c (rb_reg_equal): all option flags should be same to be equal. * error.c (Init_Exception): make Interrupt a subclass of SignalException. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1167 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* matzmatz2000-10-161-0/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1009 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 000831matz2000-08-311-0/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@919 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* ebaneban2000-08-091-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@880 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* matz - nakada win32 patchmatz2000-08-031-6/+11
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@872 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2000-06-25eban2000-06-241-1/+0
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@783 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2000-06-24eban2000-06-241-3/+5
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@781 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2000-05-12matz2000-05-121-1/+0
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@687 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2000-05-01matz2000-05-011-0/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@678 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2000-04-10matz2000-04-101-5/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@661 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2000-03-13matz2000-03-131-0/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@638 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2000-02-23matz2000-02-231-1/+0
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@624 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2000-02-08matz2000-02-081-0/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@616 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 19991125matz1999-11-251-2/+0
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* RUBYOPTmatz1999-10-211-2/+0
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@551 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 990918-repackmatz1999-09-181-1/+2
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@532 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 990917matz1999-09-161-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@529 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 1.4.1matz1999-09-161-0/+16
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@527 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 1.4.1 to bematz1999-08-241-1/+0
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@525 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* *** empty log message ***matz1999-08-131-1/+0
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@522 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 1.4.0matz1999-08-131-6/+19
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@520 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* This commit was generated by cvs2svn to compensate for changes in r372,matz1999-01-201-25/+39
| | | | | | | which included commits to RCS files with non-trunk default branches. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@373 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* This commit was generated by cvs2svn to compensate for changes in r11,matz1998-01-161-4/+22
| | | | | | | which included commits to RCS files with non-trunk default branches. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@12 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Initial revisionmatz1998-01-161-0/+186
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2 b2dd03c8-39d4-4d8f-98ff-823fe69b080e