| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-03-05 | mruby-time: add gettimeofday(2) for Windows | cremno | |
| 2014-03-05 | mruby-time: fix indentation in mrb_time_asctime | cremno | |
| 2014-03-05 | mruby-time: store timezone name directly | cremno | |
| 2014-03-05 | mruby-time: timezone_names should be const | cremno | |
| 2014-03-05 | mruby-time: store strings directly instead of pointers to them | cremno | |
| 2014-03-05 | mruby-time: mrb_time_type should be const | cremno | |
| 2014-03-05 | mruby-time: fix two tiny typos in comments | cremno | |
| 2014-03-05 | mruby-time: rearrange header order | cremno | |
| 2014-03-05 | mruby-time: remove trailing whitespace | cremno | |
| 2014-03-05 | small refactor | takkaw | |
| 2014-03-05 | use mrb_int instead of size_t since string length is represented by mrb_int; ↵ | Yukihiro "Matz" Matsumoto | |
| close #1810 | |||
| 2014-03-05 | Merge pull request #1808 from cubicdaiya/issues/unused_variable | Yukihiro "Matz" Matsumoto | |
| remove unused variable | |||
| 2014-03-05 | Merge pull request #1807 from tmash06/fix_exit_status_code | Yukihiro "Matz" Matsumoto | |
| fix mruby command returning EXIT_SUCCESS when program file can't be opened. | |||
| 2014-03-05 | remove unused variable | cubicdaiya | |
| GLOBAL_RAND_SEED_KEY is no longer used. | |||
| 2014-03-05 | fix mruby command returning EXIT_SUCCESS when program file can't be | Tatsuya Matsumoto | |
| opened. | |||
| 2014-03-05 | fix argument spec setting of Kernel.exit method. | Tatsuya Matsumoto | |
| this method requires 1 optional argument. | |||
| 2014-03-05 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2014-03-05 | should check crossing C boudary from resume | Yukihiro "Matz" Matsumoto | |
| 2014-03-05 | s/\\"/"/g in mruby-config | mattn | |
| 2014-03-05 | Merge pull request #1801 from mattn/mruby-config | Yukihiro "Matz" Matsumoto | |
| Add mruby-bin-mruby-config | |||
| 2014-03-05 | Don't echo empty string. (Remove workaround for windows) | mattn | |
| 2014-03-05 | chmod 755 | mattn | |
| 2014-03-05 | mruby command should not execute program on "syntax only option(-c)". | Tatsuya Matsumoto | |
| 2014-03-05 | Add mruby-bin-mruby-config | mattn | |
| 2014-03-04 | Fix #1793 | mattn | |
| 2014-03-04 | add Integer#div and Float#div. | Tomoyuki Sahara | |
| 2014-03-03 | use tempfile module | take_cheeze | |
| 2014-03-03 | add test to check striped binary works correctly | take_cheeze | |
| 2014-03-02 | fix a memory leak in mruby-random. | Tatsuya Matsumoto | |
| 2014-03-01 | use C style comments instead of C++ style comments | cubicdaiya | |
| 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-01 | mrb_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-28 | cancel 313f6b; add fallthrough comment | Yukihiro "Matz" Matsumoto | |
| 2014-02-28 | Merge pull request #1756 from chasonr/sprintf-utf8 | Yukihiro "Matz" Matsumoto | |
| Implement sprintf("%c") for UTF-8. | |||
| 2014-02-27 | Test for UTF-8 as mattn suggests. | chasonr | |
| The string is "Hello world" in Japanese. (hat tip: Google Translate.) | |||
| 2014-02-28 | add mruby-strip tool to strip irep's debug info | take_cheeze | |
| 2014-02-26 | Update the Fixnum#chr test for UTF-8. | chasonr | |
| 2014-02-26 | Implement 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-27 | forget to break in the switch statement | Yukihiro "Matz" Matsumoto | |
| 2014-02-26 | Merge pull request #1744 from cubicdaiya/feature/introduce_mrb_str_cat_lit | Yukihiro "Matz" Matsumoto | |
| Introduce mrb_str_cat_lit | |||
| 2014-02-26 | use mrb_str_cat_lit() more widely | cubicdaiya | |
| 2014-02-26 | use mrb_str_new_lit instead of mrb_str_new for C string literals | cubicdaiya | |
| 2014-02-25 | Merge pull request #1737 from chasonr/Random-static-data | Yukihiro "Matz" Matsumoto | |
| Implement default Random instance. | |||
| 2014-02-25 | small-optimization2 for mrb_time_zone | cubicdaiya | |
| mrb_str_new_static is more efficient than mrb_str_new in this case. | |||
| 2014-02-25 | small-optimization for mrb_time_zone | cubicdaiya | |
| Using mrb_str_new instead of mrb_str_new_cstr | |||
| 2014-02-25 | Implement default Random instance. | chasonr | |
| Previously, the default random number generator was implemented using static storage. This storage is common to all instances of mruby in a process, and use of the default random number generator in one instance will perturb the default random number generator in other instances. It is also not thread safe. With this change, the default random number generator is defined as Random::DEFAULT, as it is in CRuby. | |||
| 2014-02-25 | Merge pull request #1721 from take-cheeze/d_format_spec | Yukihiro "Matz" Matsumoto | |
| add 'd' format specifier in mrb_get_args and mruby-random gem improvement | |||
| 2014-02-23 | Fix unused function warning when readline enabled (mirb) | kyab | |
| 2014-02-22 | add test(requires MRB_GC_FIXED_ARENA enabled) | take_cheeze | |
| 2014-02-22 | fix possible arena overflow | take_cheeze | |
| 2014-02-21 | use 'd' format spec to get Random object | take_cheeze | |
