| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-03-24 | src/string.c RESIZE_CAPA use safe name variables | ksss | |
| This has a possibility of naming conflicts | |||
| 2014-03-24 | Add Enumerable#cycle | Jun Hiroe | |
| 2014-03-24 | improve Enumerable#reverse_each to be efficient | Yukihiro "Matz" Matsumoto | |
| 2014-03-24 | Merge pull request #1932 from suzukaze/add-enum.reverse_each | Yukihiro "Matz" Matsumoto | |
| Add Enumerable#reverse_each | |||
| 2014-03-24 | Add Enumerable#reverse_each | Jun Hiroe | |
| 2014-03-24 | Merge pull request #1930 from chasonr/unicode-escape | Yukihiro "Matz" Matsumoto | |
| Implement \u notation for strings and regexes. | |||
| 2014-03-24 | fix multiple value handling; ref #1931 | Yukihiro "Matz" Matsumoto | |
| 2014-03-24 | Enumerable#each_with_object | Jun Hiroe | |
| 2014-03-23 | Small correction to the test identification. | chasonr | |
| 2014-03-23 | Implement \u notation for strings and regexes. | chasonr | |
| This change adds the \u notation for double quoted strings and regular expressions. It does not implement the \u notation for character literals. Both the \uNNNN and \u{NNNN} notations are supported. \uNNNN is implemented by emitting equivalent UTF-8; that is, "\u4000" is equivalent to "\xE4\x80\x80". Unlike CRuby, the \u{NNNN} notation allows only one character per pair of braces; I see no way to lift this restriction without remodeling the parser. | |||
| 2014-03-24 | Merge pull request #1928 from ksss/fix-typo | Yukihiro "Matz" Matsumoto | |
| Hash#__update fix typo | |||
| 2014-03-24 | remove unnecessary operator method call; ref #1927 | Yukihiro "Matz" Matsumoto | |
| 2014-03-24 | Merge pull request #1927 from take-cheeze/count_crash | Yukihiro "Matz" Matsumoto | |
| Count crashed tests in total tests count. | |||
| 2014-03-24 | Hash#__update fix typo | ksss | |
| It's called by create Hash of over 126 keys | |||
| 2014-03-24 | Count crashed tests in total tests count. | take_cheeze | |
| 2014-03-24 | move conditional out of loop | Yukihiro "Matz" Matsumoto | |
| 2014-03-24 | Enumerable#one? to prune iteration when count > 1; ref #1926 | Yukihiro "Matz" Matsumoto | |
| 2014-03-24 | Merge pull request #1926 from suzukaze/add-enum.one | Yukihiro "Matz" Matsumoto | |
| Add Enumerable#one? | |||
| 2014-03-23 | Add Enumerable#one? | Jun Hiroe | |
| 2014-03-23 | Merge pull request #1925 from ksss/hash-reject | Yukihiro "Matz" Matsumoto | |
| Hash#{reject,reject!} support return Enumerator | |||
| 2014-03-23 | Hash#{reject,reject!} fix yield value | ksss | |
| 2014-03-23 | Hash#{reject,reject!} support return Enumerator | ksss | |
| 2014-03-23 | mrb_str_pool use embed-string | ksss | |
| 2014-03-23 | Merge pull request #1921 from cubicdaiya/issues/not_use_old_macro | Yukihiro "Matz" Matsumoto | |
| Use MRB_ARGS_REST() instead of ARGS_REST() | |||
| 2014-03-23 | Merge pull request #1923 from ksss/hash-enumerator-select | Yukihiro "Matz" Matsumoto | |
| Hash#{select,select!} support return Enumerator | |||
| 2014-03-23 | Merge pull request #1922 from suzukaze/add-enum.none | Yukihiro "Matz" Matsumoto | |
| Add Enumerable.none? | |||
| 2014-03-23 | Hash#{select,select!} fix yield value | ksss | |
| 2014-03-23 | Hash#{select,select!} support return Enumerator | ksss | |
| if non block given | |||
| 2014-03-23 | Support multiple values in Enumerable#none? | Jun Hiroe | |
| 2014-03-23 | Add Enumerable#none? | Jun Hiroe | |
| 2014-03-23 | Use MRB_ARGS_REST() instead of ARGS_REST() | cubicdaiya | |
| According to include/mruby.h, /* compatibility macros; will be removed */ #define ARGS_REST() MRB_ARGS_REST() | |||
| 2014-03-23 | Merge pull request #1920 from suzukaze/add-enum.minmax_by | Yukihiro "Matz" Matsumoto | |
| Add Enumerable#minmax_by | |||
| 2014-03-23 | Suppoert multiple values in Enumerable#minmax_by | Jun Hiroe | |
| 2014-03-23 | Enumerable#minmax_by | Jun Hiroe | |
| 2014-03-23 | Merge pull request #1915 from suzukaze/add-enum.minmax | Yukihiro "Matz" Matsumoto | |
| Add Enumerable#minmax | |||
| 2014-03-23 | Merge pull request #1916 from ksss/hash-enumerator | Yukihiro "Matz" Matsumoto | |
| Hash#each_{key,value} support return Enumerator if non block given | |||
| 2014-03-23 | Hash#each_{key,value} support return Enumerator | ksss | |
| if non block given | |||
| 2014-03-22 | need not to add assertion in STR_SET_LEN() where n is mrb_int | Yukihiro "Matz" Matsumoto | |
| 2014-03-22 | Support multiple values in Enumerable#minmax | Jun Hiroe | |
| 2014-03-22 | Add Enumerable#minmax | Jun Hiroe | |
| 2014-03-22 | Merge pull request #1914 from stomar/struct-emsg | Yukihiro "Matz" Matsumoto | |
| use the same error message | |||
| 2014-03-22 | Merge pull request #1913 from take-cheeze/fiber_unnecessary_get_args | Yukihiro "Matz" Matsumoto | |
| Remove unnecessary mrb_get_args in fiber_switch. | |||
| 2014-03-22 | use the same error message | Marcus Stollsteimer | |
| 2014-03-22 | remove unnecessary mrb_get_args in fiber_switch | take_cheeze | |
| 2014-03-22 | Merge pull request #1907 from ksss/float-round | Yukihiro "Matz" Matsumoto | |
| Float#round fix bug for infinity and nan cases | |||
| 2014-03-22 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2014-03-22 | add Enumerable#min_by as well; ref #1912 | Yukihiro "Matz" Matsumoto | |
| 2014-03-22 | wrap expr with paren | Yukihiro "Matz" Matsumoto | |
| 2014-03-22 | fix multiple value support of max_by; ref #1912 | Yukihiro "Matz" Matsumoto | |
| 2014-03-22 | Merge pull request #1911 from cubicdaiya/issues/use_bool_macro | Yukihiro "Matz" Matsumoto | |
| Use bool-macro instead of magic-number | |||
