| Commit message (Expand) | Author | Age | Files | Lines |
* | Merge from ruby_1_8. | knu | 2008-05-31 | 1 | -0/+3 |
* | Merge from ruby_1_8. | knu | 2008-05-29 | 1 | -31/+49 |
* | Merge from ruby_1_8. | knu | 2008-05-27 | 1 | -37/+65 |
* | Merge -r16241:16456 from ruby_1_8. | knu | 2008-05-18 | 1 | -127/+119 |
* | * enum.c (inject_i, inject_op_i): prototype. | usa | 2008-04-14 | 1 | -0/+2 |
* | * enum.c New methods: Enumerable#take, #take_while, #drop and | knu | 2008-04-14 | 1 | -0/+163 |
* | * enum.c: New methods: Enumerable#one?, #none?, #minmax, #min_by, | knu | 2008-04-14 | 1 | -31/+485 |
* | * enum.c (enum_find, enum_reject): Return an enumerator if no | knu | 2008-04-14 | 1 | -0/+2 |
* | * enum.c (find_index_i, find_index_iter_i): add prototype for VC. | usa | 2008-04-14 | 1 | -0/+2 |
* | * array.c (rb_ary_collect_bang, rb_ary_select): Return an | knu | 2008-04-14 | 1 | -1/+6 |
* | fix a typo | knu | 2008-04-14 | 1 | -1/+1 |
* | * enum.c (enum_count, enum_find_index): New methods: | knu | 2008-04-14 | 1 | -0/+144 |
* | * enum.c (enum_first, enum_group_by): New methods: | knu | 2008-04-10 | 1 | -0/+102 |
* | * enum.c (iterate_method): add prototype to avoid warning on VC++. | usa | 2008-04-09 | 1 | -0/+1 |
* | * enumerator.c, inits.c (rb_call_inits), ruby.h, intern.h, | knu | 2008-04-09 | 1 | -2/+40 |
* | * enum.c (sort_by_cmp): check if reentered. [ruby-dev:24291] | nobu | 2007-07-14 | 1 | -2/+8 |
* | Documentation typo | drbrain | 2006-06-15 | 1 | -1/+1 |
* | * enum.c (enum_min, enum_max): must not return Qundef. | nobu | 2005-06-30 | 1 | -0/+2 |
* | * enum.c (enum_min, enum_max): do not ignore nil as the first element. | nobu | 2005-06-25 | 1 | -6/+6 |
* | * enum.c (enum_inject): default the result value to Qundef to use | nobu | 2005-06-09 | 1 | -1/+3 |
* | * enum.c (enum_min_by, enum_max_by): return nil if no iteration. | nobu | 2005-06-07 | 1 | -91/+75 |
* | * string.c (rb_str_locktmp): lock string temporarily. | matz | 2004-10-30 | 1 | -0/+3 |
* | * string.c (str_gsub): reentrant check. [ruby-dev:24432] | matz | 2004-10-20 | 1 | -1/+6 |
* | * io.c (read_all): block string buffer modification during | matz | 2004-10-19 | 1 | -21/+8 |
* | * string.c (rb_str_sum): check was done with false pointer. | matz | 2004-10-02 | 1 | -13/+12 |
* | * enum.c (sort_by_i): internally used object must not be changed | nobu | 2004-09-29 | 1 | -0/+1 |
* | * array.c (rb_ary_uniq_bang): element size might change during | matz | 2004-09-21 | 1 | -7/+10 |
* | minor rdoc typo in enum#min | dave | 2004-07-14 | 1 | -1/+1 |
* | * array.c, enum.c, pack.c: rdoc patch from Johan Holmberg | ocean | 2004-07-09 | 1 | -1/+1 |
* | * array.c, enum.c, eval.c, file.c, io.c, numeric.c, object.c, prec.c, | nobu | 2004-04-14 | 1 | -1/+1 |
* | * enum.c (enum_find): mention about ifnone argument. [ruby-talk:90003] | nobu | 2004-01-16 | 1 | -8/+9 |
* | Add RDoc for Kernel global functions, tidy array and error | dave | 2003-12-29 | 1 | -0/+14 |
* | Annotate enum.c. Add pager support, and report on methods in included modules | dave | 2003-12-18 | 1 | -0/+334 |
* | * enum.c (each_with_index_i): typo. | matz | 2003-08-22 | 1 | -1/+1 |
* | * enum.c (inject_i): use rb_yield_values. | matz | 2003-08-22 | 1 | -2/+2 |
* | * eval.c (rb_yield_0): give warning for multiple values for a | matz | 2003-05-20 | 1 | -2/+2 |
* | * ext/pty/pty.c (pty_finalize_syswait): join (using Thread#value) | matz | 2003-05-19 | 1 | -10/+15 |
* | -Wall cleanups (removed unused vars, no 'code has no effect' warnings) | michal | 2003-01-16 | 1 | -2/+1 |
* | Updated Copyrights of Matz to 2003. | michal | 2003-01-16 | 1 | -1/+1 |
* | * enum.c (enum_all): now works without block. | matz | 2003-01-15 | 1 | -4/+28 |
* | * file.c (rb_find_file_ext): should not terminate searching with | matz | 2002-11-22 | 1 | -1/+0 |
* | * array.c (rb_ary_zip): iterates over items in the receiver. | matz | 2002-11-19 | 1 | -25/+15 |
* | * object.c (Init_Object): added Object#object_id, new name for | matz | 2002-11-03 | 1 | -0/+58 |
* | * parse.y (tokadd_string): ignore backslashed spaces in %w. | matz | 2002-08-01 | 1 | -1/+1 |
* | enum.c: Fix bug in enum_sort_by and some code indents | michal | 2002-07-05 | 1 | -52/+56 |
* | * eval.c (svalue_to_avalue): v may be Qundef. This fix was | matz | 2002-06-13 | 1 | -2/+3 |
* | * numeric.c (num_step): better iteration condition for float | matz | 2002-05-01 | 1 | -0/+27 |
* | * re.c (rb_reg_expr_str): should treat backslash specially in | matz | 2002-04-18 | 1 | -5/+5 |
* | * enum.c (enum_find): catch a value before recycle. | nobu | 2002-03-18 | 1 | -7/+16 |
* | * enum.c (enum_inject): use the first iterated element as the | nobu | 2002-03-18 | 1 | -7/+24 |