| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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 | initialize sname before interning | Yukihiro "Matz" Matsumoto | |
| 2014-02-25 | Merge pull request #1736 from take-cheeze/doc_update | Yukihiro "Matz" Matsumoto | |
| add ruby and C code execution order note | |||
| 2014-02-25 | add ruby and C code execution order note | take_cheeze | |
| 2014-02-25 | Merge pull request #1732 from cho45/depend-build-config | Yukihiro "Matz" Matsumoto | |
| Always include build_config.rb to compile dependency. | |||
| 2014-02-25 | Merge pull request #1733 from take-cheeze/mrb_stringize | Yukihiro "Matz" Matsumoto | |
| add MRB_ prefix to STRINGIZE macro | |||
| 2014-02-25 | Merge pull request #1734 from kyab/add_galileo_config | Yukihiro "Matz" Matsumoto | |
| Add target example for Intel Galileo board | |||
| 2014-02-25 | Merge pull request #1735 from h2so5/limit-significand-length | Yukihiro "Matz" Matsumoto | |
| limit preserved significand length | |||
| 2014-02-25 | avoid accessing uninitialized string; ref ac936fc | Yukihiro "Matz" Matsumoto | |
| 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-24 | Add target example for Intel Galileo board | kyab | |
| 2014-02-24 | add MRB_ prefix to STRINGIZE macro | take_cheeze | |
| 2014-02-24 | Merge pull request #1731 from jeremyong/master | Yukihiro "Matz" Matsumoto | |
| Issue minor corrections and updates to INSTALL file. | |||
| 2014-02-24 | Merge pull request #1730 from bggd/patch-3 | Yukihiro "Matz" Matsumoto | |
| Add error for C99 style variable declaration on travis-ci | |||
| 2014-02-24 | Always include build_config.rb to compile dependency. | cho45 | |
| build_config.rb modifies `cc.defines` (eg. `DISABLE_GEMS`) so files depending on such flags should be rebuilt. Ref. (Failing scenario): https://gist.github.com/cho45/9181191 | |||
| 2014-02-23 | Issue minor corrections and updates to INSTALL file. | Jeremy Ong | |
| 2014-02-24 | add -Werror=declaration-after-statement | bggd | |
| 2014-02-24 | remove -Werror=declaration-after-statement | bggd | |
| 2014-02-24 | limit preserved significand length | h2so5 | |
| 2014-02-24 | Merge pull request #1727 from bggd/patch-2 | Yukihiro "Matz" Matsumoto | |
| Add warning for C89-style variable declarations | |||
| 2014-02-24 | Merge pull request #1729 from take-cheeze/customizable_build_dir | Yukihiro "Matz" Matsumoto | |
| Make mruby build directory customizable. | |||
| 2014-02-23 | Merge pull request #1728 from kyab/fix_unused_error_mirb | Yukihiro "Matz" Matsumoto | |
| Fix unused function warning when readline enabled (mirb) | |||
| 2014-02-23 | support custom build_dir in CrossBuild | take_cheeze | |
| 2014-02-23 | Fix unused function warning when readline enabled (mirb) | kyab | |
| 2014-02-23 | move declaration to the top of the block; ref #1727 | Yukihiro "Matz" Matsumoto | |
| 2014-02-23 | make mruby build directory customizable | take_cheeze | |
| 2014-02-23 | Add warning for C89-style variable declarations | bggd | |
| 2014-02-22 | add src/error.h for compatibility reason | Yukihiro "Matz" Matsumoto | |
| 2014-02-22 | Merge pull request #1724 from h2so5/f2s-significand | Yukihiro "Matz" Matsumoto | |
| preserve significands in float-string conversion | |||
| 2014-02-22 | preserve significands in float-string conversion | h2so5 | |
| 2014-02-22 | powered num may be infinite in float-string conversion | Yukihiro "Matz" Matsumoto | |
| 2014-02-22 | Merge pull request #1722 from take-cheeze/hash_ext_arena_fix | Yukihiro "Matz" Matsumoto | |
| Fix possible arena overflow in mruby-hast-ext. | |||
| 2014-02-22 | Merge pull request #1723 from akuroda/string_test_cap_down | Yukihiro "Matz" Matsumoto | |
| add tests for String#capitalize!, String#downcase!, and String#upcase! | |||
| 2014-02-22 | fix the position of capitalize! and downcast!, and add test for upcase! | Akira Kuroda | |
| 2014-02-22 | add test(requires MRB_GC_FIXED_ARENA enabled) | take_cheeze | |
| 2014-02-22 | add tests for String#capitalize! and String#downcase! | Akira Kuroda | |
| 2014-02-22 | fix possible arena overflow | take_cheeze | |
| 2014-02-21 | use 'd' format spec to get Random object | take_cheeze | |
| 2014-02-21 | add 'd' format specifier to get data pointer directly from mrb_get_args | take_cheeze | |
| 2014-02-21 | use mrb_intern_lit in mruby-random | take_cheeze | |
| 2014-02-21 | Merge pull request #1720 from take-cheeze/move_error_h | Yukihiro "Matz" Matsumoto | |
| move src/error.h to include/mruby/error.h | |||
| 2014-02-20 | move src/error.h to include/mruby/error.h | take_cheeze | |
| 2014-02-18 | Merge pull request #1719 from pbosetti/master | Yukihiro "Matz" Matsumoto | |
| Added spaces in version.h macros for complying with C++11 | |||
| 2014-02-17 | Added spaces in version.h macros for complying with C++11 | Paolo Bosetti | |
| 2014-02-18 | Merge pull request #1717 from cremno/iv_size-t-null | Yukihiro "Matz" Matsumoto | |
| iv_size (non-seglist): return 0 if t is NULL | |||
| 2014-02-17 | iv_size (non-seglist): return 0 if t is NULL | cremno | |
| 2014-02-17 | use double instead of mrb_float (that may be single precision float) to ↵ | Yukihiro "Matz" Matsumoto | |
| reduce errors | |||
| 2014-02-17 | remove trailing zeros from float string representation | Yukihiro "Matz" Matsumoto | |
| 2014-02-17 | define FLO_EPSILON depends on float/double | Yukihiro "Matz" Matsumoto | |
| 2014-02-17 | remove max_digit from mrb_flo_to_str() | Yukihiro "Matz" Matsumoto | |
