summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2014-03-01use C style comments instead of C++ style commentscubicdaiya
According to CONTRIBUTING.md, Don't use C++ style comments /* This is the prefered comment style */ Use C++ style comments only for temporary comment e.g. commenting out some code lines.
2014-03-01Merge pull request #1771 from take-cheeze/add_authorYukihiro "Matz" Matsumoto
Please add me to the author.
2014-03-01Please add me to the author.take_cheeze
2014-03-01mrb_fiber_yield() is available now; you have to link mruby-fiber mrbgem to ↵Yukihiro "Matz" Matsumoto
use the function; there's no function available to create new fiber from C (countapart of Lua's lua_newthread), but that's because you cannot create a new fiber from C due to mruby C API design limitation. define your method to create fibers in Ruby; close #1269
2014-02-28cancel 313f6b; add fallthrough commentYukihiro "Matz" Matsumoto
2014-02-28Merge pull request #1756 from chasonr/sprintf-utf8Yukihiro "Matz" Matsumoto
Implement sprintf("%c") for UTF-8.
2014-02-28support break from fiber block; fix #1766Yukihiro "Matz" Matsumoto
2014-02-27Test for UTF-8 as mattn suggests.chasonr
The string is "Hello world" in Japanese. (hat tip: Google Translate.)
2014-02-28restore proc after restoring from fiber; ref #1766Yukihiro "Matz" Matsumoto
2014-02-28Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2014-02-28swap actual and expected; ref #1764Yukihiro "Matz" Matsumoto
2014-02-28Merge pull request #1763 from cubicdaiya/issues/mrb_str_new_static_bugYukihiro "Matz" Matsumoto
fix SEGV bug for mrb_str_new_static
2014-02-28fix test for Array#[]ksss
2014-02-28fix SEGV bug for mrb_str_new_staticcubicdaiya
mrb_str_new_static causes seg-fault when 3rd argument is negative.
2014-02-28Merge pull request #1762 from cubicdaiya/issues/mrb_str_new_bugYukihiro "Matz" Matsumoto
fix SEGV bug for mrb_str_new
2014-02-28fix SEGV bug for mrb_str_newcubicdaiya
mrb_str_new causes seg-fault when 3rd argument is negative.
2014-02-28remove break altogether in ci loopYukihiro "Matz" Matsumoto
2014-02-28Merge pull request #1761 from take-cheeze/mruby-stripYukihiro "Matz" Matsumoto
Add mruby-strip tool to strip irep's debug info.
2014-02-28Merge pull request #1760 from cubicdaiya/issues/make_mrb_str_dump_a_bit_fasterYukihiro "Matz" Matsumoto
make mrb_str_dump a bit faster
2014-02-28Merge pull request #1758 from ksss/array-out-whileYukihiro "Matz" Matsumoto
move check condition to outside in while block
2014-02-28Merge pull request #1759 from suzukaze/fix-testYukihiro "Matz" Matsumoto
Refactor tests in kernel.rb
2014-02-28Merge pull request #1757 from cubicdaiya/issues/use_mrb_str_cat_litYukihiro "Matz" Matsumoto
use mrb_str_cat_lit() intead of mrb_str_cat
2014-02-28add mruby-strip tool to strip irep's debug infotake_cheeze
2014-02-28make mrb_str_dump a bit fastercubicdaiya
2014-02-27move check condition to outside in while blockksss
2014-02-27Refactor tests in kernel.rbJun Hiroe
2014-02-27use mrb_str_cat_lit() intead of mrb_str_catcubicdaiya
2014-02-27should not continue loop when ci = NULLYukihiro "Matz" Matsumoto
2014-02-27Merge pull request #1751 from ↵Yukihiro "Matz" Matsumoto
cubicdaiya/issues/test_for_instance_variable_defined_question Add test for Kernel#instance_variable_defined?
2014-02-27Merge pull request #1755 from cubicdaiya/issues/add_to_me_authorsYukihiro "Matz" Matsumoto
Could you add me to AUTHORS?
2014-02-26Update the Fixnum#chr test for UTF-8.chasonr
2014-02-26Implement sprintf("%c") for UTF-8.chasonr
* sprintf("%c") is changed to accept a string for which String#size returns 1, even if it is longer than one byte, and to convert a Fixnum via Fixnum#chr (possibly returning more than one byte). Thus, if the UTF-8 gem is in use, a character will be understood as a single UTF-8 character. * The change to sprintf depends on the implementation of Fixnum#chr added to mrbgems/mruby-string-utf8/src/string.c. This should work with any other gem that implements a multibyte encoding, as long as it implements String#size and Fixnum#chr as appropriate.
2014-02-27Could you add me to AUTHORS?cubicdaiya
2014-02-27forget to break in the switch statementYukihiro "Matz" Matsumoto
2014-02-27boot_defclass: super may be NULLYukihiro "Matz" Matsumoto
2014-02-27Merge pull request #1754 from pje/patch-1Yukihiro "Matz" Matsumoto
Delete `!!Notice!!` intro paragraph from README
2014-02-26Delete `!!Notice!!` intro paragraph from READMEPatrick Ellis
It's become misleading since the release of 1.0.0 and the launch of mruby.org.
2014-02-27revert 38e9ce21 and API changed; mrb_get_backtrace() -> renamed to ↵Yukihiro "Matz" Matsumoto
mrb_exc_backtrace since this is a backtrace method implementation of Exception; mrb_get_backtrace_at() -> removed; mrb_get_backtrace() -> added to get backtrace in array (like caller)
2014-02-27avoid recursion when method_missing happened in inspect; fix #1746Yukihiro "Matz" Matsumoto
2014-02-27fix indentYukihiro "Matz" Matsumoto
2014-02-27add new function mrb_get_backtrace_at() to get backtrace at ci and pcYukihiro "Matz" Matsumoto
2014-02-27Merge pull request #1753 from take-cheeze/assert_rbYukihiro "Matz" Matsumoto
Compile assert.rb once.
2014-02-27add macro ARY_UNSET_SHAREDksss
2014-02-27add macro ARY_SET_SHAREDksss
2014-02-26add test for Kernel#instance_variable_defined?cubicdaiya
2014-02-26Merge pull request #1752 from cubicdaiya/issues/use_mrb_str_new_lit2Yukihiro "Matz" Matsumoto
Use mrb_str_new_lit instead of mrb_str_new for C string literal
2014-02-26use mrb_str_new_lit instead of mrb_str_new for C string literalcubicdaiya
2014-02-26compile assert.rb oncetake_cheeze
2014-02-26Merge pull request #1748 from cubicdaiya/issues/optim_get_valid_iv_symYukihiro "Matz" Matsumoto
fix bug for get_valid_iv_sym
2014-02-26Merge pull request #1747 from cubicdaiya/issues/use_mrb_intern_litYukihiro "Matz" Matsumoto
use mrb_intern_lit instead of mrb_intern_cstr for C string literals