summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2014-03-21Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2014-03-21Merge pull request #1904 from ktaobo/get-arg-intYukihiro "Matz" Matsumoto
Prevent accepting String value for mrb_get_args("i")
2014-03-21Float#round fix bug for infinity and nan casesksss
2014-03-21make Fiber#transfer compatible with CRubytake_cheeze
2014-03-21implement Fiber#transfertake_cheeze
2014-03-21reduce object allocation in __updateYukihiro "Matz" Matsumoto
2014-03-21Prevent 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-21flat_map to support multiple values; ref #1902Yukihiro "Matz" Matsumoto
2014-03-21Merge pull request #1902 from suzukaze/add-enum-flat_mapYukihiro "Matz" Matsumoto
Add Enumerable#{flat_map, collect_concat}
2014-03-21Merge pull request #1901 from ksss/compar-otherYukihiro "Matz" Matsumoto
Fix behavior of Comparable methods when <=> return nil
2014-03-21Add Enumerable#{flat_map,collect_concat}Jun Hiroe
2014-03-21Fix behavior of Comparable methodsksss
when <=> return nil
2014-03-21reduce hash creation by using update methodYukihiro "Matz" Matsumoto
2014-03-21Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2014-03-21use File#directory? instead of File#exist?; ref c2d8b0Yukihiro "Matz" Matsumoto
2014-03-21Merge pull request #1899 from stomar/aboutYukihiro "Matz" Matsumoto
Reword mention of mrbtest in README
2014-03-21Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2014-03-21add Hash#each_pairYukihiro "Matz" Matsumoto
2014-03-21should be able to create hash with 127+ entries; close #1894Yukihiro "Matz" Matsumoto
2014-03-20Reword mention of mrbtest in READMEMarcus Stollsteimer
2014-03-21Merge pull request #1898 from akuroda/pr_true_testYukihiro "Matz" Matsumoto
add tests for TrueClass
2014-03-21Merge pull request #1897 from suzukaze/add-enum-count-commentYukihiro "Matz" Matsumoto
Add Enumerable#count comment
2014-03-21Merge pull request #1895 from stomar/typosYukihiro "Matz" Matsumoto
Fix typos in README.md and doc/compile/README.md
2014-03-21avoid Dir.exist? that is not available in Ruby1.8Yukihiro "Matz" Matsumoto
2014-03-21add tests for TrueClassAkira Kuroda
reorder and add tests for 15.2.5.1
2014-03-21Add Enumerable#count commentJun Hiroe
2014-03-20Fix typos in READMEMarcus Stollsteimer
2014-03-20Fix literal asterisks in markdownMarcus Stollsteimer
2014-03-20should restore proc after rescue; close #1891Yukihiro "Matz" Matsumoto
2014-03-20make behavior of Fiber without block compatible with CRubytake_cheeze
2014-03-20refactor and use assert_raise in fiber test checking exception raisetake_cheeze
2014-03-20use FiberError in fiber exception raisetake_cheeze
2014-03-19enum 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-19Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2014-03-19Merge pull request #1882 from ksss/enum-find_allYukihiro "Matz" Matsumoto
Enumerable#find_all return Enumerator if non block given
2014-03-19Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2014-03-19remove size_t cast in mrb_assert() since ((size_t)n <= SIZE_MAX) is always trueYukihiro "Matz" Matsumoto
2014-03-19Merge pull request #1890 from take-cheeze/fiber_resumingYukihiro "Matz" Matsumoto
Revert MRB_FIBER_RESUMED as MRB_FIBER_RESUMING.
2014-03-19rename mrb_yield_internal to mrb_yield_with_class since it's no longer internalYukihiro "Matz" Matsumoto
2014-03-19Merge pull request #1889 from iij/pr-struct-new-block-defYukihiro "Matz" Matsumoto
Set the newly created Struct object to self in its initialization block.
2014-03-19self must be the newly created object in initialization block; close #1858Tomoyuki Sahara
2014-03-19export mrb_yield_internal.Tomoyuki Sahara
2014-03-19add root fiber resume test to know double resume checking is workingtake_cheeze
2014-03-19revert MRB_FIBER_RESUMED as MRB_FIBER_RESUMING to fix recurive resumetake_cheeze
2014-03-19string functions arguments changed from mrb_int to size_t that would take ↵Yukihiro "Matz" Matsumoto
strlen()
2014-03-19change mrb_int to size_t that would take strlen()Yukihiro "Matz" Matsumoto
2014-03-18add a space after C reserved wordsYukihiro "Matz" Matsumoto
2014-03-18should not use nil as default value for Enumerable#count since it prevent ↵Yukihiro "Matz" Matsumoto
counting nil in enums; ref #1887
2014-03-18Merge pull request #1887 from suzukaze/add-enumerable.countYukihiro "Matz" Matsumoto
Add Enumerable#count
2014-03-18stricter check for double resume; close #1885Yukihiro "Matz" Matsumoto