summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2014-03-27Merge pull request #1962 from cubicdaiya/feature/string_octYukihiro "Matz" Matsumoto
add String#oct
2014-03-27Enumerable#zip to use enumerator if mruby-enumerator gem is availableYukihiro "Matz" Matsumoto
2014-03-27Enumerable#cycle to return enumeratorYukihiro "Matz" Matsumoto
2014-03-27use __svalue instead of ary2svYukihiro "Matz" Matsumoto
2014-03-27call to_a at the top of Enumerabl#zip; ref #1961Yukihiro "Matz" Matsumoto
2014-03-27add String#octcubicdaiya
2014-03-27Support multiple values in Enumerable#zipJun Hiroe
2014-03-27Add Enumerable#zipJun Hiroe
2014-03-27an int literal may have multiple underscores insideYukihiro "Matz" Matsumoto
2014-03-27allow underscores in integer literals; close #1960Yukihiro "Matz" Matsumoto
2014-03-27Merge pull request #1959 from mattn/string_hexYukihiro "Matz" Matsumoto
Implement String#hex
2014-03-27Merge pull request #1956 from cubicdaiya/issues/suitable_type5Yukihiro "Matz" Matsumoto
Use size_t instead of int
2014-03-27Implement String#hexmattn
2014-03-27Merge pull request #1954 from take-cheeze/objectspace_count_keyYukihiro "Matz" Matsumoto
Use CRuby compatible key in ObjectSpace.count_objects .
2014-03-27Merge pull request #1953 from bovi/conversion-str-intYukihiro "Matz" Matsumoto
Adapt TypeError Message for String to (Integer|Float) Conversion
2014-03-27Use CRuby compatible key in ObjectSpace.count_objects .take_cheeze
2014-03-27use suitable typecubicdaiya
2014-03-27Adapt for Float and IntegerDaniel Bovensiepen
2014-03-27Adapt TypeError Message for String to Integer Conversion.Daniel Bovensiepen
MRI: "str" * "3" => TypeError: no implicit conversion of String into Integer mruby: "str" * "3" => TypeError: String can't be coerced into int
2014-03-26Merge pull request #1952 from kyab/catchup_arduinodueYukihiro "Matz" Matsumoto
Catch up to latest Arduino IDE
2014-03-26Catch up to latest Arduino IDEkyab
2014-03-26revert 813ba5 since #1949 fixedYukihiro "Matz" Matsumoto
2014-03-26Merge branch 'eval_test' of https://github.com/take-cheeze/mruby into ↵Yukihiro "Matz" Matsumoto
take-cheeze-eval_test
2014-03-26should not over process ensure clauses; close #1949Yukihiro "Matz" Matsumoto
2014-03-26Merge pull request #1948 from monaka/pr-remove-unused-null-checkYukihiro "Matz" Matsumoto
Remove redundant NULL checks.
2014-03-26Don't use ensure to fix crash of mruby-eval test.take_cheeze
2014-03-26Add tests for mruby-eval.take_cheeze
2014-03-26Remove redundant NULL checks.Masaki Muranaka
mrb_malloc causes an exception when memory was empty.
2014-03-26Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2014-03-26add new function mrb_toplevel_run to prevent running through C function ↵Yukihiro "Matz" Matsumoto
boudaries on exceptions; close #1942
2014-03-25Merge pull request #1946 from ksss/str-macroYukihiro "Matz" Matsumoto
Fix unnecessary string macro
2014-03-25Merge pull request #1945 from cubicdaiya/issues/suitable_type3Yukihiro "Matz" Matsumoto
Use mrb_int instead of int
2014-03-25Fix unnecessary string macroksss
2014-03-25Use mrb_int instead of intcubicdaiya
2014-03-25Enumerable#find_index to support multiple valuesYukihiro "Matz" Matsumoto
2014-03-25Merge pull request #1939 from suzukaze/add-enum.find_indexYukihiro "Matz" Matsumoto
Enumerable#find_index
2014-03-25Merge pull request #1938 from cubicdaiya/issues/suitable_type2Yukihiro "Matz" Matsumoto
Use mrb_int instead of int
2014-03-25Enumerable#find_indexJun Hiroe
2014-03-25Use mrb_int instead of intcubicdaiya
2014-03-25use to_int to integer duck-type checkYukihiro "Matz" Matsumoto
2014-03-25Merge pull request #1937 from cubicdaiya/issues/mrb_intYukihiro "Matz" Matsumoto
Use mrb_int instead of int
2014-03-25Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2014-03-25REnv uses obj->c as env link; no superYukihiro "Matz" Matsumoto
2014-03-25Use mrb_int instead of intcubicdaiya
2014-03-25Merge pull request #1936 from ksss/pool-capaYukihiro "Matz" Matsumoto
mrb_str_pool add string capa
2014-03-25Use mrb_int.take_cheeze
2014-03-25mrb_str_pool add string capaksss
2014-03-25Implement ObjectSpace.each_object .take_cheeze
2014-03-25Merge pull request #1934 from ksss/safe-nameYukihiro "Matz" Matsumoto
src/string.c RESIZE_CAPA use safe name variables
2014-03-24Fix Enumerable#cycle; ref #1933Yukihiro "Matz" Matsumoto
* add multi value support * `each` method may not rewind the sequence so that `cycle` should save elements