| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-03-21 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2014-03-21 | Merge pull request #1904 from ktaobo/get-arg-int | Yukihiro "Matz" Matsumoto | |
| Prevent accepting String value for mrb_get_args("i") | |||
| 2014-03-21 | Float#round fix bug for infinity and nan cases | ksss | |
| 2014-03-21 | make Fiber#transfer compatible with CRuby | take_cheeze | |
| 2014-03-21 | implement Fiber#transfer | take_cheeze | |
| 2014-03-21 | reduce object allocation in __update | Yukihiro "Matz" Matsumoto | |
| 2014-03-21 | Prevent accepting String value for mrb_get_args("i") | Keita Obo | |
| Accepting String value for mrb_get_args("i") causes unintentional expression. * `"str" * "3"` => `"strstrstr"` This change prevents String->Integer conversion for mrb_get_args("i") and fixes above problem. See also: https://github.com/mruby/mruby/issues/1903 | |||
| 2014-03-21 | flat_map to support multiple values; ref #1902 | Yukihiro "Matz" Matsumoto | |
| 2014-03-21 | Merge pull request #1902 from suzukaze/add-enum-flat_map | Yukihiro "Matz" Matsumoto | |
| Add Enumerable#{flat_map, collect_concat} | |||
| 2014-03-21 | Merge pull request #1901 from ksss/compar-other | Yukihiro "Matz" Matsumoto | |
| Fix behavior of Comparable methods when <=> return nil | |||
| 2014-03-21 | Add Enumerable#{flat_map,collect_concat} | Jun Hiroe | |
| 2014-03-21 | Fix behavior of Comparable methods | ksss | |
| when <=> return nil | |||
| 2014-03-21 | reduce hash creation by using update method | Yukihiro "Matz" Matsumoto | |
| 2014-03-21 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2014-03-21 | use File#directory? instead of File#exist?; ref c2d8b0 | Yukihiro "Matz" Matsumoto | |
| 2014-03-21 | Merge pull request #1899 from stomar/about | Yukihiro "Matz" Matsumoto | |
| Reword mention of mrbtest in README | |||
| 2014-03-21 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2014-03-21 | add Hash#each_pair | Yukihiro "Matz" Matsumoto | |
| 2014-03-21 | should be able to create hash with 127+ entries; close #1894 | Yukihiro "Matz" Matsumoto | |
| 2014-03-20 | Reword mention of mrbtest in README | Marcus Stollsteimer | |
| 2014-03-21 | Merge pull request #1898 from akuroda/pr_true_test | Yukihiro "Matz" Matsumoto | |
| add tests for TrueClass | |||
| 2014-03-21 | Merge pull request #1897 from suzukaze/add-enum-count-comment | Yukihiro "Matz" Matsumoto | |
| Add Enumerable#count comment | |||
| 2014-03-21 | Merge pull request #1895 from stomar/typos | Yukihiro "Matz" Matsumoto | |
| Fix typos in README.md and doc/compile/README.md | |||
| 2014-03-21 | avoid Dir.exist? that is not available in Ruby1.8 | Yukihiro "Matz" Matsumoto | |
| 2014-03-21 | add tests for TrueClass | Akira Kuroda | |
| reorder and add tests for 15.2.5.1 | |||
| 2014-03-21 | Add Enumerable#count comment | Jun Hiroe | |
| 2014-03-20 | Fix typos in README | Marcus Stollsteimer | |
| 2014-03-20 | Fix literal asterisks in markdown | Marcus Stollsteimer | |
| 2014-03-20 | should restore proc after rescue; close #1891 | Yukihiro "Matz" Matsumoto | |
| 2014-03-20 | make behavior of Fiber without block compatible with CRuby | take_cheeze | |
| 2014-03-20 | refactor and use assert_raise in fiber test checking exception raise | take_cheeze | |
| 2014-03-20 | use FiberError in fiber exception raise | take_cheeze | |
| 2014-03-19 | enum methods to support multiple values; all?, any?, grep, include?, drop, ↵ | Yukihiro "Matz" Matsumoto | |
| drop_while, take, take_while, each_cons, each_slice, group_by, first, count | |||
| 2014-03-19 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2014-03-19 | Merge pull request #1882 from ksss/enum-find_all | Yukihiro "Matz" Matsumoto | |
| Enumerable#find_all return Enumerator if non block given | |||
| 2014-03-19 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2014-03-19 | remove size_t cast in mrb_assert() since ((size_t)n <= SIZE_MAX) is always true | Yukihiro "Matz" Matsumoto | |
| 2014-03-19 | Merge pull request #1890 from take-cheeze/fiber_resuming | Yukihiro "Matz" Matsumoto | |
| Revert MRB_FIBER_RESUMED as MRB_FIBER_RESUMING. | |||
| 2014-03-19 | rename mrb_yield_internal to mrb_yield_with_class since it's no longer internal | Yukihiro "Matz" Matsumoto | |
| 2014-03-19 | Merge pull request #1889 from iij/pr-struct-new-block-def | Yukihiro "Matz" Matsumoto | |
| Set the newly created Struct object to self in its initialization block. | |||
| 2014-03-19 | self must be the newly created object in initialization block; close #1858 | Tomoyuki Sahara | |
| 2014-03-19 | export mrb_yield_internal. | Tomoyuki Sahara | |
| 2014-03-19 | add root fiber resume test to know double resume checking is working | take_cheeze | |
| 2014-03-19 | revert MRB_FIBER_RESUMED as MRB_FIBER_RESUMING to fix recurive resume | take_cheeze | |
| 2014-03-19 | string functions arguments changed from mrb_int to size_t that would take ↵ | Yukihiro "Matz" Matsumoto | |
| strlen() | |||
| 2014-03-19 | change mrb_int to size_t that would take strlen() | Yukihiro "Matz" Matsumoto | |
| 2014-03-18 | add a space after C reserved words | Yukihiro "Matz" Matsumoto | |
| 2014-03-18 | should not use nil as default value for Enumerable#count since it prevent ↵ | Yukihiro "Matz" Matsumoto | |
| counting nil in enums; ref #1887 | |||
| 2014-03-18 | Merge pull request #1887 from suzukaze/add-enumerable.count | Yukihiro "Matz" Matsumoto | |
| Add Enumerable#count | |||
| 2014-03-18 | stricter check for double resume; close #1885 | Yukihiro "Matz" Matsumoto | |
